phpbar.de logo

Mailinglisten-Archive

[php] crypt fuer windows

[php] crypt fuer windows

Daniel Beulshausen abe_(at)_flaemingnet.de
Thu, 4 May 2000 19:14:50 +0200


>if( getenv( "WINDIR" ) ) {
>  function crypt( $string, $salt = "" ) {
>   
>srand( time() );
>    if( $salt == "" ) $salt = substr( md5( uniqid( rand()
>) ), 0, 2);
>    return exec("perl -e \"print crypt('$string', '$salt');\"");
>
> }
>}

Warscheinlich ist der PATH nicht richtig gesetzt.
Was sagt denn: ?

<?php

if( !function_exists("crypt") )
{
function crypt( $string, $salt = "" )
{
srand( time() );
if( $salt == "" ) $salt = substr( md5( uniqid( rand() ) ), 0, 2);
return exec("c:\perl\bin\perl -e \"print crypt('$string', '$salt');\"");
}
}

print crypt("test");

?>


Daniel



php::bar PHP Wiki   -   Listenarchive