Home > Article > Backend Development > How to determine whether a prime number is in php
php method to determine whether it is a prime number: first create a PHP sample file; then use the customized "function check_ss($num) {...}" method to determine whether the specified number is a prime number.
The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer
php determines whether it is a prime number:
The code is as follows:
<?php check_ss(8); function check_ss($num) { for($i=2; $i < $num ; $i++) { if($num % $i == 0) { echo $num. '不是素数'; exit; } } echo $num. '是素数'; }
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to determine whether a prime number is in php. For more information, please follow other related articles on the PHP Chinese website!