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
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
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

Add a Patch

Pull Requests

Add a Pull Request

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: Thu Apr 25 22:01:29 2024 UTC