| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
  [2012-03-01 13:18 UTC] pajoye@php.net
 Description: ------------ Tested using wordpress 3.3.1. 1st request works, 2nd request (cached) failed. Some methods are not found. [01-Mar-2012 13:10:51 UTC] PHP Fatal error: Call to undefined method wpdb::init_charset() in G:\apps\Apache2\htdocs\wp\wp-includes\wp-db.php on line 503 I did not try yet to create a smaller reproduce script (working on another crashing bug). Patcheswrong_arkey_alloc_fix (last revision 2012-03-08 20:23 UTC by ab@php.net)Pull RequestsHistoryAllCommentsChangesGit/SVN commits             
             | 
    |||||||||||||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 07:00:01 2025 UTC | 
A simpler reproduce code; <?php $there = 'world'; class hello { function __construct($p) { $this->testme($p); } function testme($p) { echo "testme $p <br>"; } } $h = new hello($there);