php ide with checkpoint restart is there? [message #169934] |
Thu, 30 September 2010 13:19 |
mirkocrocop
Messages: 1 Registered: September 2010
Karma: 0
|
Junior Member |
|
|
Hello guys and girls,
is there a php ide that can lets say restart debugging session without going
from all over beginning, or test specific points without going thru
relaunches which give me headache, i want to test some code but releanching
and reloading all makes it so tedious, please help , can i bypass this ,
it would make my code testing 200 times faster.
|
|
|
Re: php ide with checkpoint restart is there? [message #169948 is a reply to message #169934] |
Fri, 01 October 2010 04:35 |
Michael Vilain
Messages: 88 Registered: September 2010
Karma: 0
|
Member |
|
|
In article <i822oe$2e8$1(at)ss408(dot)t-com(dot)hr>, "mirkocrocop" <dorian(at)aa(dot)com>
wrote:
> Hello guys and girls,
> is there a php ide that can lets say restart debugging session without going
> from all over beginning, or test specific points without going thru
> relaunches which give me headache, i want to test some code but releanching
> and reloading all makes it so tedious, please help , can i bypass this ,
> it would make my code testing 200 times faster.
I haven't come across this sort of debugger for php. I've heard that a
Java IDE can do this, even step back in the code, but I think that's
because it's running in the Java Virtual Machine. All the
implementations of php I've seen are actual code compiled into shared
libraries. Since it's not a simulated machine, I don't think you'll
find this feature in any of the IDEs out there.
Sorry.
--
DeeDee, don't press that button! DeeDee! NO! Dee...
[I filter all Goggle Groups posts, so any reply may be automatically ignored]
|
|
|
Re: php ide with checkpoint restart is there? [message #169999 is a reply to message #169934] |
Mon, 04 October 2010 12:25 |
Peter H. Coffin
Messages: 245 Registered: September 2010
Karma: 0
|
Senior Member |
|
|
On Thu, 30 Sep 2010 15:19:08 +0200, mirkocrocop wrote:
> Hello guys and girls,
> is there a php ide that can lets say restart debugging session without going
> from all over beginning, or test specific points without going thru
> relaunches which give me headache, i want to test some code but releanching
> and reloading all makes it so tedious, please help , can i bypass this ,
> it would make my code testing 200 times faster.
It seems to be dependant on the underlying engine whether this is
availible or not. PHP (at least as from php.net) doesn't have support
for this. Python, R, and Java do. (Hell, RPG does too and it's a
compiled language with NO interpretive mode...)
I think you're over-weighing the amount of bother in stopping and
restarting a program from the beginning. There's very few php programs
out there that will not encounter the error in a fraction of a second if
the error is really a program error rather than a data-triggered error,
and if it's data-driven, you're better off isolating and feeding in the
bad data than trying to isolate a section of code to run.
--
100. Finally, to keep my subjects permanently locked in a mindless
trance, I will provide each of them with free unlimited Internet
access.
--Peter Anspach's list of things to do as an Evil Overlord
|
|
|