php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #47465 Functions structure not working fine
Submitted: 2009-02-20 16:01 UTC Modified: 2009-02-20 16:17 UTC
From: mcs_sohail at yahoo dot com Assigned:
Status: Not a bug Package: PHP options/info functions
PHP Version: 5.2.8 OS: windows and linux both
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: mcs_sohail at yahoo dot com
New email:
PHP Version: OS:

 

 [2009-02-20 16:01 UTC] mcs_sohail at yahoo dot com
Description:
------------
functions in php are not working as they should perform.
like i define a function 

function abc($param1,$param2){
   // some code here
   echo "abc Function Calling";
}

then i made a function call 
abc($temp_param1,$temp_param2,$temp_param3);

It is calling the above function but i think it should show some errors. 

Reproduce code:
---------------
function abc($param1,$param2){
// some code here
}

abc($temp_param1,$temp_param2,$temp_param3);

Expected result:
----------------
It should show some errors.

Actual result:
--------------
it is showing

abc Function Calling

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-02-20 16:17 UTC] derick@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 02:01:28 2024 UTC