如何检查字符串是否可以是
PHP中的有效路径?
当我使用file_get_contents,is_file,realpath,file_exists以及不是路径的字符串时,我收到以下警告.
“function_name()” expects parameter 1 to be a valid path, string given in […]
那么如何确定字符串是否可以是有效路径.
你到底想要做什么?你可能会问……
好吧,我想创建一个这样的函数.
funtion my_smart_function( string $path_or_content )
{
$content = is_file_without_warning_if_not_a_valid_path( $path_or_content )
? file_get_contents( $path_or_content )
: $path_or_content;
// do nice stuff with my $content
}
有时$path_or_content将是文件的有效路径,有时$path_or_content将是文件本身的内容(例如,即时创建的图像的二进制数据甚至没有路径(至少还没有) ).在后一种情况下,我上面提到的所有这些与字符串相关的函数(例如file_exists())都会发出警告(参见上面的引用).
我想知道的东西.
realpath(‘xyz’)不会发出警告但是
realpath(file_get_contents(‘path / to / actual / image.jpg’))确实……
因此,realpath和上面提到的其他函数区分字符串或作为有效路径的字符串.那么我们怎样才能事先做到?
Thx提前!