Hello all,
I'm trying start a perl script from PHP but I'm not getting success.
This script is calling the Inline-octave module (see below an example) to
do some numeric calculus.
The script is started but it doesn't finish. I think that the process is
being killed when the Inline-octave module is called.
Any ideas to solve this problem?
Thanks in advance,
Paulo R. Lagrotta
#### Perl Script #####
#!/usr/bin/perl
use strict;
use Test;
BEGIN
{
plan tests =>1;
}
use Inline Octave => q{
function x=jnk1(u); x=u+1; endfunction
};
my $v= jnk1(3)->disp();
chomp ($v);
ok( $v, "4" );
print "$v\n";
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php