Tagged Questions

9
votes
2answers
477 views

How can I get around a ‘die’ call in a Perl library I can’t modify?

Yes, the problem is with a library I'm using, and no, I cannot modify it. I need a workaround. Basically, I'm dealing with a badly written Perl library, that exits with 'die' when a certain error …
8
votes
4answers
260 views

Is there a C equivalent for Perl’s Carp module?

In some projects I've done in C, I've liked using the following macros which work similar to Perl's warn and die subroutines: #include <stdio.h> #include <stdlib.h> #define warn(...) \ …
5
votes
2answers
393 views

Forking subprocesses in Perl unit tests stops prove; Test::Harness exiting

Hi, I have been trying to use the Perl utility/module "prove" as a test harness for some unit tests. The unit tests are a little more "system" than "unit" as I need to fork off some background …
4
votes
6answers
178 views

PHP Die question

Just a quick question. Say a call a method like so mysql_pconnect("server","tator_w","password") or die("Unable to connect to SQL server"); Can I have the 'die' call a method rather …
4
votes
2answers
161 views

How do I handle both caught and uncaught errors in a Perl subroutine?

This is a followup to "How can I get around a ‘die’ call in a Perl library I can’t modify?". I have a subroutine that calls a Library-Which-Crashes-Sometimes many times. Rather than couch each call …
1
vote
1answer
36 views

jQuery: Binding and Unbinding Live Click Events

Hi, So there are two constraints to my question: I must use an external function call in my click event, and I must use a live click event, rather binding a typical click event. So my problem is …
1
vote
5answers
103 views

Specify page/line when throwing die() ?

I am using PHP 4, the only way I know of to cause an error and stop everything is calling die(). But in case I run into the error later and don't remember where its coming from I would like to specify …
1
vote
9answers
293 views

How Can I Display Static HTML After I’ve Used die() in a PHP Block?

Let's say I have some code like this: <html> <head><title>Title</title></head> <body> <?php if (!$someCondition){ die(); } else{ #Do something } ?> …
0
votes
1answer
26 views

jQuery die() Killing All Elements Instead of Only One Specified

Hi all, I have a peculiar issue that I'm suspecting may just be normal behavior, but I need people to confirm. I'm hooking up live click events to a number of <li> elements by using this code: …
0
votes
3answers
52 views

How to include files with die(); function?

Hi. file1.php and file2.php with die(); function. include.php: <? include 'file1.php'; include 'file2.php' ?> file1.php <? echo 'included'; die(); ?> file2.php <? echo 'not …
-5
votes
6answers
449 views

what does PHP die() return

in PHP Does die() gives anything in return when we use it?