Home Backend Development PHP Tutorial 如何写成PHP函数

如何写成PHP函数

Jun 13, 2016 am 10:26 AM
decode DIGI parseint var

怎么写成PHP函数

JScript code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->function decode(C) {        var digi=16;        var add= 10;        var plus=7;        var cha=36;        var I = -1;        var H = 0;        var B = "";        var J = C.length;        var G = C.charCodeAt(J - 1);        C = C.substring(0, J - 1);        J--;        for (var E = 0; E = add) {                D = D - plus            }            B += (D).toString(cha);            if (D > H) {                I = E;                H = D            }        }        var A = parseInt(B.substring(0, I), digi);        var F = parseInt(B.substring(I + 1), digi);        var L = (A + F - parseInt(G)) / 2;        var K = (F - L) / 100000;        L /= 100000;        return {            lat: K,            lng: L        }}document.write(decode('HHDFJGZVVIHIJG').lat+','+decode('HHDFJGZVVIHIJG').lng);
Copy after login

这个JS函数的功能。。。怎么用PHP写呀。。谢谢了,这个函数运行结果:39.09917,117.22348

------解决方案--------------------
直译即可
PHP code
print_r(decode('HHDFJGZVVIHIJG'));function decode($C) {  $digi = 16;  $add = 10;  $plus = 7;  $cha = 36;  $I = -1;  $H = 0;  $B = "";  $J = strlen($C);  $G = ord($C{$J - 1});  $C = substr($C, 0, -1);  $J--;  for ($E = 0; $E = $add) {      $D = $D - $plus;    }    $B .= base_convert($D, 10, $cha);    if ($D > $H) {      $I = $E;      $H = $D;    }  }  $A = base_convert(substr($B,0, $I), $digi, 10);  $F = base_convert(substr($B, $I + 1), $digi, 10);  $L = ($A + $F - $G) / 2;  $K = ($F - $L) / 100000;  $L /= 100000;  return array( 'lat' => $K, 'lng' => $L);}<div class="clear">
                 
              
              
        
            </div>
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Advanced usage and skill sharing of Oracle DECODE function Advanced usage and skill sharing of Oracle DECODE function Mar 08, 2024 am 10:30 AM

The DECODE function in Oracle database is a very commonly used function, which can select among a set of values ​​based on the result value of an expression. The syntax of the DECODE function is as follows: DECODE(expression, search_value1, result1, search_value2, result2,..., default_result) where expression is the expression to be compared, s

Oracle DECODE function detailed explanation and usage examples Oracle DECODE function detailed explanation and usage examples Mar 08, 2024 pm 03:51 PM

The DECODE function in Oracle is a conditional expression that is often used to return different results based on different conditions in query statements. This article will introduce the syntax, usage and sample code of the DECODE function in detail. 1. DECODE function syntax DECODE(expr,search1,result1[,search2,result2,...,default]) expr: the expression or field to be compared. search1,

How to solve 'undefined: strconv.ParseInt' error in golang? How to solve 'undefined: strconv.ParseInt' error in golang? Jun 25, 2023 pm 03:52 PM

In Golang, the strconv library is often used to convert between string and numeric types. However, if the "undefined: strconv.ParseInt" error occurs when using the strconv.ParseInt function, then you need to do some solutions: confirm whether the strconv package is imported in Golang. If you want to use a function in a certain package or variables, you must first import the package. therefore,

18 Ways to Fix Audio Service Not Responding Issue on Windows 11 18 Ways to Fix Audio Service Not Responding Issue on Windows 11 Jun 05, 2023 pm 10:23 PM

Audio output and input require specific drivers and services to work as expected on Windows 11. These sometimes end up running into errors in the background, causing audio issues like no audio output, missing audio devices, distorted audio, etc. How to Fix Audio Service Not Responding on Windows 11 We recommend you to start with the fixes mentioned below and work your way through the list until you manage to resolve your issue. The audio service may become unresponsive for a number of reasons on Windows 11. This list will help you verify and fix most issues that prevent audio services from responding on Windows 11. Please follow the relevant sections below to help you through the process. Method 1: Restart the audio service. You may encounter

The role and examples of var keyword in PHP The role and examples of var keyword in PHP Jun 28, 2023 pm 08:58 PM

The role and examples of var keyword in PHP In PHP, the var keyword is used to declare a variable. In previous PHP versions, using the var keyword was the idiomatic way to declare member variables, but its use is no longer recommended. However, in some cases, the var keyword is still used. The var keyword is mainly used to declare a local variable, and the variable will automatically be marked as local scope. This means that the variable is only visible within the current block of code and cannot be accessed in other functions or blocks of code. Use var

Let's talk about the differences between var, let and const (code example) Let's talk about the differences between var, let and const (code example) Jan 06, 2023 pm 04:25 PM

This article brings you relevant knowledge about JavaScript. It mainly introduces the differences between var, let and const, as well as the relationship between ECMAScript and JavaScript. Interested friends can take a look at it. I hope Helpful to everyone.

How to convert string to integer using strconv.ParseInt function in golang How to convert string to integer using strconv.ParseInt function in golang Nov 18, 2023 pm 06:24 PM

How to use the strconv.ParseInt function in golang to convert a string to an integer requires specific code examples. In golang, the strconv package provides a series of functions for converting strings to other types. Among them, the strconv.ParseInt function is used to convert strings to integer types. It's very simple to use the ParseInt function of the strconv package. The following uses specific code examples to illustrate how to use this function to convert strings to integers. head

Basic usage analysis of DECODE function in Oracle Basic usage analysis of DECODE function in Oracle Mar 07, 2024 pm 04:09 PM

Analysis of the basic usage of the DECODE function in Oracle In the Oracle database, the DECODE function is a very commonly used function, used to implement logical judgment and numerical replacement similar to multi-layer if-else statements. The basic syntax of the DECODE function is as follows: DECODE(expr,search1,result1,search2,result2,...,default_result) where the parameter meanings are as follows: expr

See all articles