Home > Article > Backend Development > How to convert php to js code
How to convert php to js code: 1. Open and view the PHP code; 2. Analyze the algorithm logic in the PHP code; 3. Create a js file; 4. Implement the algorithm logic with js code. The code is like "with(navigator){if(appName != 'MicroMessenger'){document.write('...');}else{...}".
The operating environment of this tutorial: windows7 system, PHP8.1 version, DELL G3 computer
php code to js Code
<?php $user_agent = $_SERVER['HTTP_USER_AGENT']; if (strpos($user_agent, 'MicroMessenger') === false) { // 非微信浏览器禁止浏览 echo "HTTP/1.1 401 Unauthorized"; } else { // 微信浏览器,允许访问 echo "MicroMessenger"; // 获取版本号 preg_match('/.*?(MicroMessenger\/([0-9.]+))\s*/', $user_agent, $matches); echo '<br>Version:'.$matches[2]; }
Convert to js
Implementation method:
with(navigator){ if(appName != 'MicroMessenger'){ document.write('非微信浏览器'); }else{ document.write('MicroMessenger</br>'+appVersion); } }
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to convert php to js code. For more information, please follow other related articles on the PHP Chinese website!