This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| phpinfo() | |
| PHP Version => 5.4.9 | |
| System => Linux nikita2206-N56VJ 3.2.0-37-generic #58-Ubuntu SMP Thu Jan 24 15:28:10 UTC 2013 x86_64 | |
| Build Date => Feb 12 2013 17:13:16 | |
| Configure Command => './configure' '--enable-cli' '--enable-fpm' '--enable-intl' '--enable-pdo' '--with-pdo-pgsql' '--enable-sockets' '--with-curl' '--with-pgsql' '--with-openssl' | |
| Server API => Command Line Interface | |
| Virtual Directory Support => disabled | |
| Configuration File (php.ini) Path => /usr/local/lib | |
| Loaded Configuration File => /usr/local/lib/php.ini |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if(!function_exists('if_string_contains')) | |
| { | |
| function if_string_contains($needle,$haystack) { | |
| if (is_array($needle)) { | |
| foreach ($needle as $n) { | |
| if (strpos($haystack, $n) !== false) { | |
| return true; |
NewerOlder