linkinfo() function
-
In class-itsec-lib.php file else block try to use linkinfo() function, even if it doesn’t exists.
// resolve any symlinks if ( function_exists( 'linkinfo' ) ) { //linkinfo not available on Windows with PHP < 5.3.0 if ( file_exists( $path ) && 0 < linkinfo( $path ) ) { $path = @readlink( $path ); } } else { if ( file_exists( $path ) && 0 < linkinfo( $path ) ) { $path = @readlink( $path ); } }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘linkinfo() function’ is closed to new replies.