Jump to content

splitting a php file?


algorithm

Recommended Posts

I was wondering if it was possible to split a php file so one part would start off, then it would call a second php file, and then go back to the original file to finish processing.

 

I want to do this because there are certain sections of my phps that are repeated many times across files, it would be easier just to call one file instead of typing it all through. 

Link to comment
https://forums.phpfreaks.com/topic/191111-splitting-a-php-file/
Share on other sites

Yep, includes and create a function for any code that you re-use. if it's the same code snippet again and again you want to make it a function in a separate file and include that at the top of your script, then run the function every time you want the code executed

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.