php-general Digest 1 Feb 2012 14:24:06 -0000 Issue 7671

2012-02-01 Thread php-general-digest-help
php-general Digest 1 Feb 2012 14:24:06 - Issue 7671 Topics (messages 316432 through 316445): Re: Time zone in date function 316432 by: Ian 316434 by: Jonesy 316436 by: Matijn Woudt 316442 by: Jonesy Cannot make bzip2 stream on the fly 316433 by:

Re: [PHP] Autoloading

2012-02-01 Thread Marco Behnke
Am 26.01.2012 15:44, schrieb Floyd Resler: As stated, when I change __autoload to spl_autoload_register I get the can't be redeclared error. Any ideas? Try $callback = function($class_name) { $path = dirname(__FILE__)./../../lib/class.{$class_name}.php; if

[PHP] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/php_pdo_mysql' ....

2012-02-01 Thread Darryle Steplight
Hello Everyone,    My name is Darryle. I've installed PHP 5.3.9 on my CentOs box and some numerous modules via yum. Some of those modules are  PDO, PDO_MYSQL and PDO_SQLITE. However, my PHP configuration is not recognizing my PDO_MYSQL module.  I can verify that these modules exists by looking in

[PHP] Looking for the string functions

2012-02-01 Thread Tim Streater
I'm keen to look at the C source of such as substr_replace() and stripos(). I've downloaded the 5.3.9 PHP source, but am having difficulty locating the string functions. Could someone point me at the right directory or .c file? Thanks, -- Cheers -- Tim -- PHP General Mailing List

Re: [PHP] Looking for the string functions

2012-02-01 Thread Mike Mackintosh
If you don't get any replies, try the Dev Mailing list. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Looking for the string functions

2012-02-01 Thread Mike Mackintosh
btw, php dev = internals -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/php_pdo_mysql' ....

2012-02-01 Thread Matijn Woudt
On Wed, Feb 1, 2012 at 6:56 PM, Darryle Steplight dstepli...@gmail.com wrote: Hello Everyone,    My name is Darryle. I've installed PHP 5.3.9 on my CentOs box and some numerous modules via yum. Some of those modules are  PDO, PDO_MYSQL and PDO_SQLITE. However, my PHP configuration is not

Re: [PHP] Looking for the string functions

2012-02-01 Thread Matijn Woudt
On Thu, Feb 2, 2012 at 12:17 AM, Tim Streater t...@clothears.org.uk wrote: I'm keen to look at the C source of such as substr_replace() and stripos(). I've downloaded the 5.3.9 PHP source, but am having difficulty locating the string functions. Could someone point me at the right directory or

Re: [PHP] Looking for the string functions

2012-02-01 Thread Mike Mackintosh
On Feb 1, 2012, at 18:49, Matijn Woudt tijn...@gmail.com wrote: On Thu, Feb 2, 2012 at 12:17 AM, Tim Streater t...@clothears.org.uk wrote: I'm keen to look at the C source of such as substr_replace() and stripos(). I've downloaded the 5.3.9 PHP source, but am having difficulty locating

Re: [PHP] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/php_pdo_mysql' ....

2012-02-01 Thread Darryle Steplight
I have version usr/lib64/mysql/libmysqlclient.so.18 instead of usr/lib64mysql//libmysqlclient.so.15 . I coped over the file into usr/lib64/libmysqlclient.so.18, because that file didn't exist in that path, I created the sym link but no luck. Few fixes are better than no fixes for sure. On Wed,