Tagged Questions
11
votes
1answer
379 views
“real” execution time limit
Using set_time_limit() or max_execution_time, does not "really" limits (except on Windows) the execution time, because as stated in PHP manual:
Note:
The set_time_limit() function and the ...
10
votes
11answers
614 views
What is considered a long execution time?
I am trying to figure out just how "efficient" my server-side code is.
Using start and end microtime(true) values, I am able to calculate the time it took my script to run.
I am getting times from ...
5
votes
4answers
185 views
How to test 500 Trillion combinations in less than 6 hours of execution time [closed]
I have a PHP script now looping through combinations of a set of arrays. I can test 6.1 Billion of the 500 Trillion total combinations in 1 hour with a simple PHP script. Is it possible to write a ...
4
votes
5answers
1k views
PHP: Coding long-running scripts when servers impose an execution time limit
FastCGI servers, for example, impose an execution time limit on PHP scripts which cannot be altered using set_time_limit() in PHP. IIS does this too I believe.
I wrote an import script for a PHP ...
3
votes
3answers
449 views
Max execution time issue
I want to increase the maximum execution & input time for my PHP scripts. I added the following two lines to my .htaccess file located at the document root:
php_value max_execution_time 8000
...
3
votes
5answers
389 views
How much mail() function can be used in 30sec execution time?
I have to made a page which will send Email to Newsletter subscribers. There is more then 14000 subscriber. I want to use php mail() function to send Email to them. But I'm afraid that it will not be ...
2
votes
2answers
63 views
php doubts. what happens if two people access the same script at the same time?
i've made a php search engine a while ago and now i have this doubt that i already searched for it and saw a lot of questions here on stack overflow talking about multiple simultaneous accesses to php ...
2
votes
1answer
138 views
Is it bad to change max_execution_time in PHP to something like 5 mins in order to make long poll (comet) push requests?
I am trying to make a semi-realtime notification system sort of like on Facebook and for that I am looking forward to using long polling instead of mindless polling (polling every N seconds).
Yes, I ...
2
votes
5answers
410 views
PHPUnit print tests execution time
is there a way to print the execution time of each test with PHPUnit?
2
votes
1answer
99 views
In PHP does max_execution_time affect shutdown functions that are run through a register_shutdown_function() call?
I have a shutdown function registered using register_shutdown_function() that takes a long time to complete. Will PHP's max_execution_time cause PHP to terminate this function or will it run until it ...
2
votes
2answers
1k views
How to get the execution time of a MySQL query from PHP?
I execute MySQL queries from PHP and would like to know how time consuming they are. Is there any way to get the execution time of a MySQL query from PHP?
I also wonder if the execution time depends ...
1
vote
2answers
47 views
Overriding php.ini on server
I have a page which allows users to upload images.
It is returning a 500 error when the user tries to upload larger images though.
The following code...
<?php echo ...
1
vote
4answers
105 views
Comparing execution times in PHP
I would like to compare different PHP code to know which one would be executed faster. I am currently using the following code:
<?php
$load_time_1 = 0;
$load_time_2 = 0;
$load_time_3 = ...
1
vote
2answers
194 views
php execution time vs iddle time
This is more of a theoretical question.
When I run a PHP script that does a passthru to some other program, say a Java application, lets assume that program works for 30 minutes and then ends ...
1
vote
1answer
363 views
Getting the actual (absolute) execution time of the last query in PHP (excluding network latency etc)
I want to get the actual Mysql query execution times while they run in my project so running PHP microtime() before and after and subtracting won't work.
When we run a query in command line, the ...
1
vote
3answers
123 views
php profiling: what results are normal?
As testing server, my computer (Windows 7, Amd Athlon X2, 1 GB RAM) is used.
My application is based on Zend Framework. It uses MySQL and Zend_Translation, and Memcached as cache.
I'm getting ...
0
votes
1answer
29 views
php mysql server execution time - want to reset after every time a function is called. is it possible?
I'm using a recursive function to do some calculation for every user and reward them for certain condition. Everything was working fine, but now that my user number has increased to something like ...
0
votes
2answers
62 views
Calculating Time of a query php & Mysql
I am trying to calculate the time it takes a query to run using a php script:
For example:
$sql = "SELECT COUNT(*) FROM `order_items` LEFT JOIN `orders` ON `oi_o_id` = `o_id` WHERE `o_status` = ...
0
votes
1answer
53 views
Determine how long a system(), pasthrus(), exec(), operation is taking in php
Want to know how to determine how long a call to system(), passthru(), exec() (either of these) takes. For example. I use system() to call an external program, I would like to time how long it takes ...
0
votes
3answers
165 views
PHP - infinite maximum execution time
Here's a fake scenario to explain my issue in a more generic way:
I have a site with 2000 pages, I want to iterate through each page to generate a sitemap, using the file_get_html() function and ...
0
votes
3answers
254 views
PHP fgetcsv encounters Fatal error: Maximum execution time exceeded on Firefox
First of all I guess that "fatal error: maximum execution time exceeded" in PHP is a server side error and shouldn't depend on browser version, right? But seems it does!?!
I have this code to read ...
0
votes
2answers
232 views
How to set the max execution time of script in php when the server is in safe mode?
I want to upload and download files to a server. As the server is in safe mode it is not allowing to increase the execution time of the script. As I cant increase the time limit the script is timing ...
0
votes
3answers
396 views
Running 100+ MySQL Update Queries. Optimization Tips Please :)
I'm working on this game titled "Fortress", located at http://www.joemajewski.com/fortress. Anyways, it's one of those browser-based role-playing games where players build an army and upgrade their ...
0
votes
4answers
249 views
Detecting maximum execution time in Runtime
I've seen a lot of questions regarding this error in PHP. But everywhere the solution is given as to set the time limit.
But what I want to do is, to detect the error and if it occurs then switch to ...
0
votes
4answers
296 views
RSA encryption results in server execution timeout
I am using PHP Crypt_RSA (http://pear.php.net/package/Crypt_RSA) for encrypting and decrypting the contents. Contents are of 1kb size. Following are the results:
keylength = 1024
Encryption ...
0
votes
1answer
343 views
Problem with function session_start() (works slowly)
I have a problem wtih session_start() on primary server. When I load page for the first time, it takes less than 1 second to complete request. If I'll wait for approximately 12-15 seconds and then ...
0
votes
7answers
641 views
PHP Function execution cost table
There is a reference table that shows the execution cost of every php function?
I know that the time execution is boundet to many factors and is impossible to determinate an unique value, but im ...
-1
votes
3answers
491 views
mysql query execution time | reduce query
I have a query which let me to change users order.
here is my query:
update test set orderID =
case orderID
when (select orderID from ( select * from test where orderID > ( ...