JavaScript to PHP [message #185019] |
Mon, 24 February 2014 16:02 |
Stan Weiss
Messages: 3 Registered: October 2011
Karma: 0
|
Junior Member |
|
|
Over the years I have written a number of JavaScript. The past couple of
years I have been rewriting a few in PHP. I do not have any good PHP
reference material. Can someone help me out. What would I replace
Math.POW with?
ans1 = c7 + c8 + c9 + c10 + c11
c12 = ( Math.pow(10.0, ans1))
Thanks,
Stan
|
|
|
|
Re: JavaScript to PHP [message #185023 is a reply to message #185020] |
Mon, 24 February 2014 17:27 |
Thomas 'PointedEars'
Messages: 701 Registered: October 2010
Karma: 0
|
Senior Member |
|
|
Christoph Michael Becker wrote:
> Stan Weiss wrote:
>> Can someone help me out. What would I replace
>> Math.POW with?
>>
>> ans1 = c7 + c8 + c9 + c10 + c11
>> c12 = ( Math.pow(10.0, ans1))
>
> Just use the pow() function.[2] Since PHP 5.6 there's even an operator
> (**) available.[3]
The latest stable PHP version is 5.5.9. [1] PHP 5.6.0*alpha2* was released
on 2014-02-13. [2] It is not a good idea to speak of future software
versions as something that is carved in stone.
[1] <http://php.net/downloads>
[2] <http://php.net/>
> [2] <https://wiki.php.net/rfc/pow-operator>
You got your footnotes mixed.
PointedEars
--
Anyone who slaps a 'this page is best viewed with Browser X' label on
a Web page appears to be yearning for the bad old days, before the Web,
when you had very little chance of reading a document written on another
computer, another word processor, or another network. -- Tim Berners-Lee
|
|
|
Re: JavaScript to PHP [message #185024 is a reply to message #185023] |
Mon, 24 February 2014 18:47 |
Christoph Michael Bec
Messages: 207 Registered: June 2013
Karma: 0
|
Senior Member |
|
|
Thomas 'PointedEars' Lahn wrote:
> Christoph Michael Becker wrote:
>
>> Stan Weiss wrote:
>>> Can someone help me out. What would I replace
>>> Math.POW with?
>>>
>>> ans1 = c7 + c8 + c9 + c10 + c11
>>> c12 = ( Math.pow(10.0, ans1))
>>
>> Just use the pow() function.[2] Since PHP 5.6 there's even an operator
>> (**) available.[3]
>
> The latest stable PHP version is 5.5.9. [1] PHP 5.6.0*alpha2* was released
> on 2014-02-13. [2] It is not a good idea to speak of future software
> versions as something that is carved in stone.
ACK. I should have used at least future tense.
> [1] <http://php.net/downloads>
> [2] <http://php.net/>
>
>> [2] <https://wiki.php.net/rfc/pow-operator>
>
> You got your footnotes mixed.
Sorry.
--
Christoph M. Becker
|
|
|
Re: JavaScript to PHP [message #185098 is a reply to message #185020] |
Wed, 26 February 2014 14:36 |
Stan Weiss
Messages: 3 Registered: October 2011
Karma: 0
|
Junior Member |
|
|
Christoph,
Thank You.
Stan
Christoph Michael Becker wrote:
>
> Stan Weiss wrote:
>
>> Over the years I have written a number of JavaScript. The past couple of
>> years I have been rewriting a few in PHP. I do not have any good PHP
>> reference material.
>
> Well, you can use the PHP manual.[1]
>
>> Can someone help me out. What would I replace
>> Math.POW with?
>>
>> ans1 = c7 + c8 + c9 + c10 + c11
>> c12 = ( Math.pow(10.0, ans1))
>
> Just use the pow() function.[2] Since PHP 5.6 there's even an operator
> (**) available.[3]
>
> [1] <http://www.php.net/manual/>
> [1] <http://www.php.net/manual/function.pow.php>
> [2] <https://wiki.php.net/rfc/pow-operator>
>
> --
> Christoph M. Becker
|
|
|