php pow

Solutions on MaxInterview for php pow by the best coders in the world

showing results for - "php pow"
Ava
28 Mar 2017
1$z = pow(2, 8); 	// int(256)
2$z = $x ** $y;		// PHP >= 5.6
Lino
25 Jul 2020
1<?php
2var_dump(pow(28)); // int(256)
3?>