Javascript and php code for getting function parameter objects

Source: Internet
Author: User

For example:
Copy codeThe Code is as follows:
Function say (){
Alert (arguments [0] + ':' + arguments [1]);
}
Say ('hanglor ', 'hanglor is a boy! ');

Result: fanglor is a boy!
--------------------------------------------------------------------------------
This is a bit similar to the func_get_args () function in php. It is also an array for obtaining function parameters.
Example (The following is the php code ):
Copy codeThe Code is as follows:
Function uses (){
$ Args = func_get_args ();
If (! Empty ($ args )){
Foreach ($ args as $ key => $ val ){
If (file_exists ($ val. '. php ')){
Include "{$ val}. php ";
} Else {
If (DEBUG ){
Echo "{$ val}. php does not exist! ";
}
}
}
}
}
// Re-encapsulate include
Uses ('config', 'db ');

Automatically load config. php and db. php. If it does not exist, it will display {__file __}. php does not exist.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.