|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-09-18 06:32 UTC] mfischer@php.net
[2001-09-18 07:03 UTC] bate at bate dot de
[2001-09-18 07:05 UTC] sniper@php.net
[2001-09-18 07:07 UTC] bate at bate dot de
[2001-09-18 07:09 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 05:00:01 2025 UTC |
#!/usr/bin/php -q <?php echo "Ihr Name:"; if ($fp = fopen("php://stdin","r")) { $line = fgets($fp, 100); fclose($fp); } $name = ereg_replace("[\n\r]", '', $line); echo "Hallo $name!\n"; ?> This Program makes me with my Binary a seg fault after 3 executions .. ?