Jump to content

functions


GHW_Chronic

Recommended Posts

The functions are for 2 things. 1: pawn highlighting (smaller function) 2: amxmod to amxmodx auto-converter (which unless you know what pawn, amx, and amxx are, you don't know what I'm talking about). And the length of these functions is minimal.

And I'm just going to have to seperate these functions from the other functions in the include file. I didn't want to have to do this, but I guess I will if PHP is going to want to read these functions everytime the page loads.
Link to comment
https://forums.phpfreaks.com/topic/13771-functions/#findComment-53529
Share on other sites

If there is no way to break them up then why not just add an if case at the top of the page you want to use them on, but only sometimes, and not include the file on condition A.

So,
[code]
if (!isset($_POST['user_request']))
{
// just diplay the page with a form or something
} else {
include('a_really_big_function.php');
include('another_rbf.php');
// use them now, they were only loaded when needed
// print stuff out for the user
}
[/code]
Link to comment
https://forums.phpfreaks.com/topic/13771-functions/#findComment-53553
Share on other sites

again you missed the point. I ALWAYS want to include the first 4 functions in an included file. I only want the last 2 functions if they are used in a page. They are all in the same file. But I will just force myself to seperate the files into amxx_functions.php and amxx2_funcstions.php.

[End Topic]
Link to comment
https://forums.phpfreaks.com/topic/13771-functions/#findComment-53554
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.