Hi,

Some decoded a zend file for me but i get this error:

Parse error: syntax error, unexpected '*' in /home/xxx/public_html/.main.php on line 136

the code is:

mt_srand( ( double ) * 1000000 );

I just delete the * ?

Sorry i dont know much about php.

Recommended Answers

All 2 Replies

I believe this should work :

mt_srand ( double ) * 1000000 ;

You're actually trying to cast it. Just remove the (double) and *

mt_srand(1000000 );

Even this is correct

mt_srand( ( double ) 1000000 );

Close if this solves your problem.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.