Sophie

Sophie

distrib > * > cooker > x86_64 > by-pkgid > 1243822e7df129a639ee31c72aac04d0 > files > 59

php-perl-1.0.0-34.x86_64.rpm

--TEST--
Test 49: creating and using perl objects from external module
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$perl = new Perl();
$perl->eval('use Digest::MD5;');
$ctx = new Perl('Digest::MD5');
$ctx->add("Hello");
echo $ctx->hexdigest()."\n";
echo "ok\n";
?>
--EXPECT--
8b1a9953c4611296a827abf8c47804d7
ok