php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #10459 can't find function then crush
Submitted: 2001-04-23 11:36 UTC Modified: 2001-05-23 11:10 UTC
From: akul at otamedia dot com Assigned:
Status: Closed Package: *General Issues
PHP Version: 4.0.4pl1 OS: Windows 98 SE
Private report: No CVE-ID: None
 [2001-04-23 11:36 UTC] akul at otamedia dot com
Configuration: see bug #9819

Output:

X-Powered-By: PHP/4.0.4pl1
Content-type: text/html

<HTML><BODY>
<br>
<b>Fatal error</b>:  Call to undefined function:  sorted_keys() in <b>../action.
class.php</b> on line <b>52</b><br>

then Windows says (language is russian):

????????? PHP ??????? ???? ??? ????????? ? ???????? ?????? 
? ?????? <??? ??????> ?? ?????? 0084:1f82cf20.
????????:
EAX=00d70094 CS=0167 EIP=1f82cf20 EFLGS=00010202
EBX=00d705e0 SS=016f ESP=0063fc58 EBP=0063fc78
ECX=00000000 DS=016f ESI=00d70b80 FS=610f
EDX=00000080 ES=016f EDI=00000001 GS=0000
????? ?? ?????? CS:EIP:

?????????? ?????:
1f702718 00000003 006ae6c8 00d70000 007bcd70 00000000 00000000 00000000 0063fd10 1f702505 00d70b80 00000001 00000010 00761adc 007bcd70 10037cb1 

Source fragment:

class Action
{
	var	$ID;
	var	$Name;
	var	$Parameters;
	var	$Done=false;
	var	$events=array();
	var	$Result;

	function Action($Type,$Parameters)
	{
		global $base;

		// Find this action in table
		switch(gettype($Type)){
		  case 'integer':	$where='ID='.$Type;break;
		  case 'string':	$where='Name='.$base->qstr($Type);break;
		  default:		trigger_error('Incorrect Type parameter in Action()',E_USER_ERROR);
		}

		if(!$action=$base->Execute('SELECT * From Actions WHERE '.$where))
			trigger_error('Unknown Type in Action()',E_USER_ERROR);  // <-- line 52 is here!

		$sk=sorted_keys($Parameters);

		while(!$action->EOF())
		{
			$sorted_params=sort(split(',',$action->Parameters));
			$sorted_params=merge(',',$sorted_params);
			
			if($sorted_params==$sk) break;
			$action->MoveNext();
		}

Sorry, but I can't provide the full sources for this case!

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-04-23 11:39 UTC] akul at otamedia dot com
BTW, function sorted_keys included and must be found..
 [2001-05-18 04:43 UTC] jmoore@php.net
Please provide a generic script that is as simple as possible that we can just copy and paste into our text editors for testing. This script should have no external dependencies unless it is one of these the causes the crash.

This will help us fix the bug.

Thanks,

- James
 [2001-05-23 11:10 UTC] akul at otamedia dot com
After upgrading to 4.0.7 (snapshot) bug is dead. Now I have error:

Fatal error: Only variables can be passed by reference in C:\www\yesmoke2\adodb\adodb-odbc.inc.php on line 313

and this is normal, so I think bug is closed.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 10:01:26 2024 UTC