[PHP-DEV] PHP 4.0 Bug #9378 Updated: Exit() in a Funtion never break the process, PHP module still running

2001-04-29 Thread azhdin
ID: 9378 User Update by: [EMAIL PROTECTED] Old-Status: Feedback Status: Open Bug Type: *Function Specific Description: Exit() in a Funtion never break the process, PHP module still running ?php function test() { echo ji; exit(); } test(); ? With this test, the Exit() function goes well

[PHP-DEV] PHP 4.0 Bug #9378 Updated: Exit() in a Funtion never break the process, PHP module still running

2001-02-25 Thread azhdin
ID: 9378 User Update by: [EMAIL PROTECTED] Old-Status: Feedback Status: Open Bug Type: *Function Specific Description: Exit() in a Funtion never break the process, PHP module still running Here's my script where the problem occures. You can see that there is a SQL statement error in $lvRequete

[PHP-DEV] PHP 4.0 Bug #9378 Updated: Exit() in a Funtion never break the process, PHP module still running

2001-02-24 Thread jmoore
ID: 9378 Updated by: jmoore Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: *Function Specific Assigned To: Comments: the following test script works fine for me: ?php function test() { echo "ji"; exit(); } test(); ? can you report on this test or include