Date: 04/29/01
- Next message: Andi Gutmans: "Re: [PHP-DEV] Output seems to be out of order"
- Previous message: andi <email protected>: "[PHP-DEV] Bug #8904 Updated: Segfault with phpMyadmin"
- Next in thread: Andi Gutmans: "Re: [PHP-DEV] Output seems to be out of order"
- Reply: Andi Gutmans: "Re: [PHP-DEV] Output seems to be out of order"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Here is the script I was running to get some info.
<?
echo "<html><head><title>System Info</title></head><body>";
echo "<pre>";
echo "posix_getpid: " . posix_getpid() . "\n\n";
echo "posix_getppid: " . posix_getppid() . "\n\n";
echo "posix_uname: " . print_r(posix_uname()) . "\n\n";
echo "posix_times: " . print_r(posix_times()) . "\n\n";
echo "</pre>";
echo "</body></html>";
?>
Here is the output.
<html><head><title>System Info</title></head><body><pre>posix_getpid: 1741
posix_getppid: 1735
Array
(
[sysname] => Linux
[nodename] => red
[release] => 2.4.1
[version] => #1 Tue Feb 20 11:09:36 EST 2001
[machine] => i686
)
posix_uname: 1
Array
(
[ticks] => 345752069
[utime] => 4
[stime] => 0
[cutime] => 0
[cstime] => 0
)
posix_times: 1
</pre></body></html>
Either I am really confused or the output is being made in the wrong order.
This is the latest cvs as of 3:30 EST with Apache 1.3 on linux.
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Andi Gutmans: "Re: [PHP-DEV] Output seems to be out of order"
- Previous message: andi <email protected>: "[PHP-DEV] Bug #8904 Updated: Segfault with phpMyadmin"
- Next in thread: Andi Gutmans: "Re: [PHP-DEV] Output seems to be out of order"
- Reply: Andi Gutmans: "Re: [PHP-DEV] Output seems to be out of order"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

