Home Backend Development PHP Tutorial A brief discussion on PHP and mobile APP development (API interface development)

A brief discussion on PHP and mobile APP development (API interface development)

Jul 29, 2016 am 09:13 AM
api array gt nbsp output

Recommended reading: RESTful What is it? Let’s understand RESTful architecture together Get a deeper understanding of API development
This post is written for people who don’t know much about PHP and API development
1. First, briefly answer two questions:
1. Can PHP develop clients?
Answer: No, because PHP is a scripting language and is responsible for completing the S part of the B/S architecture or C/S architecture, that is, the development of the server. (Don’t worry about GTK and WinBinder)
2. Why choose PHP as your first choice for server development?
Answer: Cross-platform (can run under UNIX, LINUX, WINDOWS, Mac OS), low consumption (PHP consumes quite a few system resources), high operating efficiency (relatively speaking), the perfect partner of MySQL, itself Free and open source,...
2. How to use PHP to develop API (Application Programming Interface, Application Programming Interface)?
People who have done API should understand that actually developing API is simpler than developing WEB, but the logic may be more complicated, because API is actually data output without rendering the page, so there is no MVC (API only has M and C) ,
1. Just like WEB development, you first need some relevant parameters. These parameters will be passed by the client, maybe GET or POST. This needs to be agreed upon by the development team or a unified specification can be formulated.
2. With parameters, complete data processing according to application requirements, such as: task progress update, APP in-app purchase, data submission at the end of a game, etc.
3. After the data logic is processed, return to the client. Relevant data that needs to be used, such as: mission status, in-app purchase results, player information, etc. How to return the data to the client?
Direct output form, such as: JSON, XML, TEXT, etc.
4. After the client gets the data you returned, it interacts with the user locally on the client
A simple API example written temporarily:
  1. php
  2. $output = array();
  3. $a = @$_GET['a'] ? $_GET ['a'] : '';
  4. $uid =@$_GET ['uid' ] ? $_GET['uid'] : 0;
  5. if( empty($a)){
  6. gt;NULL, 'info'=> exit( json_encode($output)); }
  7. // Take the interface
  8. if($a ==
  9. 'get_users')
  10. {
  11. //Check users
  12. if ($uid == $output ;NULL, 'info'
  13. =>'The uid is null!',
  14. 'code'=>-401); exit(json_encode ($output));
  15. ​​​}
  16. //Assume $mysql is the database
  17. $mysql = array(
  18. ​​ 10001 => array(
  19.                                                                                                                                                        =>5,                                                      
  20. => 'Shine X',
  21. .com'
  22. ,                    ' qq' = & gt; 979137,
  23. 'gold' = & gt; 1500,
  24. 'powerPlay' = & gt; array array ('2xp'
  25. =>
  26. 12,'gem'=> ;5
  27. ,
  28. 'keys'=>5,'chest'=> 'gems'=> array('red'=>13,'green'=> 8 ,'yellow'=>17), 4,
  29.                                                 =>1377123144,   ​​​​​​'exp'=>16758, ), 10002 =>                                                                                                                                                                                                                                                                                                                                            'elva',
  30. email'=>'elva@ezhi.net',
  31.                                                                                                                                         => >1,'gem' =>120
  32. ,'bingo'=> 'chest' =>8
  33. ),
  34.             'gems'=> array('red'=>13,'green'=>3,'blue'=>8,'yellow'=>17),
  35.             'ctime'=>1376523234,
  36.             'lastLogin'=>1377123144,
  37.             'level'=>112,
  38.             'exp'=>167588,
  39.         ),
  40.         10003 => array(
  41.             'uid' => 10003,
  42.             'vip' => 5,
  43.             'nickname' => 'Lily',
  44.             'email' => 'Lily@ezhi.net',
  45.             'qq' => NULL,
  46.             'gold' => 1541,
  47.             'powerplay'=> array('2xp'=>2,'gem'=>112,'bingo'=>4,'keys'=>7,'chest'=>8),
  48.             'gems' => array('red'=>13,'green'=>3,'blue'=>9,'yellow'=>7),
  49.             'ctime' => 1376523234,
  50.             'lastLogin'=> 1377123144,
  51.             'level' => 10,
  52.             'exp' => 1758,
  53.         ),
  54.     );
  55.     
  56.     $uidArr = array(10001,10002,10003);
  57. if (in_array($uid, $uidArr,true )) {
  58. $output = array('data'=> NULL, 'info'=> 'The user does not exist!' ,'code'=>-402);
  59. (json_encode($output ));
  60. }
  61. [$uid
  62. ];
  63. //Output data
  64. $output
  65. =
  66. array
  67. (
  68. )
  69. 'data' =>array
  70. (
  71. => true,
  72. //Is it the first time Log in u'unream' = & gt; 4, // Number of unusual messages
  73. 'untask' = & gt; 3,//Unfinished tasks
  74. ), => 'Here is the message which , commonly used in popup window'
  75. ,
  76. //Message prompt, the client often uses this as a pop-up window message. 200,//The codes for success and failure are usually positive or negative numbers                                                          son_encode
  77. ($output );
  78. {
  79. //. ..​​​​​die('You are adjusting the get_games_result interface!');
  80. } elseif ($a == 'upload_avatars')
  81. {
  82.                                                                                                     upload_avatars interface!'
  83. ); }Copy codeClick test (for the client, this address is also called directly):
    http://www.ezhi.net/api/test/index.php
    http://www.ezhi.net/api/ test/index.php?a=get_users
    http://www.ezhi.net/api/test/index.php?a=get_users&uid=10001
    http://www.ezhi.net/api/test/index. php?a=get_users&uid=10002
    http://www.ezhi.net/api/test/index.php?a=get_users&uid=10003
    3. In actual projects, we should pay attention to several matters when developing API ( For reference only):
    1. There are many ways to implement multiple interfaces in a single file, such as: if..elseif.. or switch or dynamic method (that is, TP’s form of accessing the function body)
    2. It is best to use json for data output. JSON is very cross-platform. All major mainstream programming languages ​​​​in the market support json parsing. JSON is gradually replacing xml and becoming the universal format for network data
    3. Interface For security, interface verification must be added. For example, the client and server use unified encryption methods for different interfaces, and the server needs to verify each interface. This is to ensure that the interface is prevented from being maliciously refreshed or maliciously called by hackers, especially for large commercial applications.
    4. For online APIs, you must ensure that all interfaces are normal and all error messages are closed => error_reporting(0). When outputting JSON, there cannot be any other output. Otherwise, the client will fail to parse the data and directly Crash!
    5. There is a certain difference between developing API and WEB. If it is WEB, the code may be wrong, which will not cause a particularly serious error. It may just cause data writing and query failure, or it may cause a certain part of the WEB to be misaligned. Or gibberish. But if it’s an API, just Crash!
    6. When doing interface development, it is not recommended to use framework development. The reasons can be summarized as follows (in fact, I am a bit risky, I am also a TPer, after all, this is the official website of TP):
      1) Client Generally, there are extremely high requirements for the response speed of the server. Therefore, it is most efficient to use the most original PHP to complete interface development. If a framework is used, various unnecessary files need to be loaded, just like wearing a suit in the summer. winter clothes. Just imagine, when you are playing on your mobile phone, you use an application to perform any operation, and wait for a long time before there is any movement. Can you bear it?
      2) As mentioned in point 4 above, frameworks are a very happy thing for WEB development, but for APIs, you really can’t imagine what trouble it will cause you! In the end, you will be miserable~~ Because many frameworks were born for the WEB (I also look forward to one day seeing frameworks or extensions specifically designed for developing APIs)
     Some people are also struggling with this, interface efficiency and stability , it also depends on the person who codes. Some people may not be able to write as fast as the framework, while others think there is no problem with using the framework. These are just suggestions. The key depends on your actual situation. It is also recommended to stress test the code before going online
    Speaking of which, I have to talk about open platforms such as Tencent Weibo and Taobao. In fact, those open platforms, so-called open, provide you with such an interface. You can adjust the interface files they provide (generally returning JSON or XML) based on the technical documents they provide and the formats and requirements they set. You can get their relevant information, such as: QQ user basic information, Taobao store, product news, etc. Then complete the interaction in your application based on these messages.
    In fact, ajax is also a form of calling API, what do you think? Haha~~

    The above has introduced a brief discussion of PHP and mobile APP development (API interface development), including ajax, Taobao store, and Application content. I hope it will be helpful to friends who are interested in PHP tutorials.

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

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
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 尊渡假赌尊渡假赌尊渡假赌

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)

Solution: Your organization requires you to change your PIN Solution: Your organization requires you to change your PIN Oct 04, 2023 pm 05:45 PM

The message "Your organization has asked you to change your PIN" will appear on the login screen. This happens when the PIN expiration limit is reached on a computer using organization-based account settings, where they have control over personal devices. However, if you set up Windows using a personal account, the error message should ideally not appear. Although this is not always the case. Most users who encounter errors report using their personal accounts. Why does my organization ask me to change my PIN on Windows 11? It's possible that your account is associated with an organization, and your primary approach should be to verify this. Contacting your domain administrator can help! Additionally, misconfigured local policy settings or incorrect registry keys can cause errors. Right now

How to adjust window border settings on Windows 11: Change color and size How to adjust window border settings on Windows 11: Change color and size Sep 22, 2023 am 11:37 AM

Windows 11 brings fresh and elegant design to the forefront; the modern interface allows you to personalize and change the finest details, such as window borders. In this guide, we'll discuss step-by-step instructions to help you create an environment that reflects your style in the Windows operating system. How to change window border settings? Press + to open the Settings app. WindowsI go to Personalization and click Color Settings. Color Change Window Borders Settings Window 11" Width="643" Height="500" > Find the Show accent color on title bar and window borders option, and toggle the switch next to it. To display accent colors on the Start menu and taskbar To display the theme color on the Start menu and taskbar, turn on Show theme on the Start menu and taskbar

How to change title bar color on Windows 11? How to change title bar color on Windows 11? Sep 14, 2023 pm 03:33 PM

By default, the title bar color on Windows 11 depends on the dark/light theme you choose. However, you can change it to any color you want. In this guide, we'll discuss step-by-step instructions for three ways to change it and personalize your desktop experience to make it visually appealing. Is it possible to change the title bar color of active and inactive windows? Yes, you can change the title bar color of active windows using the Settings app, or you can change the title bar color of inactive windows using Registry Editor. To learn these steps, go to the next section. How to change title bar color in Windows 11? 1. Using the Settings app press + to open the settings window. WindowsI go to "Personalization" and then

How to enable or disable taskbar thumbnail previews on Windows 11 How to enable or disable taskbar thumbnail previews on Windows 11 Sep 15, 2023 pm 03:57 PM

Taskbar thumbnails can be fun, but they can also be distracting or annoying. Considering how often you hover over this area, you may have inadvertently closed important windows a few times. Another disadvantage is that it uses more system resources, so if you've been looking for a way to be more resource efficient, we'll show you how to disable it. However, if your hardware specs can handle it and you like the preview, you can enable it. How to enable taskbar thumbnail preview in Windows 11? 1. Using the Settings app tap the key and click Settings. Windows click System and select About. Click Advanced system settings. Navigate to the Advanced tab and select Settings under Performance. Select "Visual Effects"

What are the differences between Huawei GT3 Pro and GT4? What are the differences between Huawei GT3 Pro and GT4? Dec 29, 2023 pm 02:27 PM

Many users will choose the Huawei brand when choosing smart watches. Among them, Huawei GT3pro and GT4 are very popular choices. Many users are curious about the difference between Huawei GT3pro and GT4. Let’s introduce the two to you. . What are the differences between Huawei GT3pro and GT4? 1. Appearance GT4: 46mm and 41mm, the material is glass mirror + stainless steel body + high-resolution fiber back shell. GT3pro: 46.6mm and 42.9mm, the material is sapphire glass + titanium body/ceramic body + ceramic back shell 2. Healthy GT4: Using the latest Huawei Truseen5.5+ algorithm, the results will be more accurate. GT3pro: Added ECG electrocardiogram and blood vessel and safety

Display scaling guide on Windows 11 Display scaling guide on Windows 11 Sep 19, 2023 pm 06:45 PM

We all have different preferences when it comes to display scaling on Windows 11. Some people like big icons, some like small icons. However, we all agree that having the right scaling is important. Poor font scaling or over-scaling of images can be a real productivity killer when working, so you need to know how to customize it to get the most out of your system's capabilities. Advantages of Custom Zoom: This is a useful feature for people who have difficulty reading text on the screen. It helps you see more on the screen at one time. You can create custom extension profiles that apply only to certain monitors and applications. Can help improve the performance of low-end hardware. It gives you more control over what's on your screen. How to use Windows 11

10 Ways to Adjust Brightness on Windows 11 10 Ways to Adjust Brightness on Windows 11 Dec 18, 2023 pm 02:21 PM

Screen brightness is an integral part of using modern computing devices, especially when you look at the screen for long periods of time. It helps you reduce eye strain, improve legibility, and view content easily and efficiently. However, depending on your settings, it can sometimes be difficult to manage brightness, especially on Windows 11 with the new UI changes. If you're having trouble adjusting brightness, here are all the ways to manage brightness on Windows 11. How to Change Brightness on Windows 11 [10 Ways Explained] Single monitor users can use the following methods to adjust brightness on Windows 11. This includes desktop systems using a single monitor as well as laptops. let's start. Method 1: Use the Action Center The Action Center is accessible

How to turn off private browsing authentication for iPhone in Safari? How to turn off private browsing authentication for iPhone in Safari? Nov 29, 2023 pm 11:21 PM

In iOS 17, Apple introduced several new privacy and security features to its mobile operating system, one of which is the ability to require two-step authentication for private browsing tabs in Safari. Here's how it works and how to turn it off. On an iPhone or iPad running iOS 17 or iPadOS 17, Apple's browser now requires Face ID/Touch ID authentication or a passcode if you have any Private Browsing tab open in Safari and then exit the session or app to access them again. In other words, if someone gets their hands on your iPhone or iPad while it's unlocked, they still won't be able to view your privacy without knowing your passcode

See all articles