search
HomeBackend DevelopmentPHP TutorialThe 9 most promising PHP open source projects: Android development ranks first_PHP Tutorial

The open source world of PHP is quite exciting, and you are also exposed to many famous PHP open source projects, such as Drupal, Sugar CMS, Joomla, etc., but in this article, the author will select 9 latest ones that are not too well-known, but It can be very practical in some aspects. It is still in the development stage and is a PHP open source project with great potential. I believe that all readers will be amazed after reading it: It turns out that PHP can do so many things.

1. PHP FOR Android

Now, iPhone and Android are very popular, and owning them has become a trend. And Android's market share is also becoming larger and larger.

Now, in addition to using JAVA to write Android applications, there is another option, that is, you can use PHP to write related Android applications. This is all thanks to an open source project Php For Android (http:// phpforandroid.net/). It is actually implemented using the Android interface API provided by another open source project Scripting Layer for Android (SL4A) (http://code.google.com/p/android-scripting/). Any scripting language that supports SL4A (such as Javascript, Ruby, Perl, PHP, and Python) can directly interact with the operating system through interfaces and write applications.

If you want to know more about this project, you can read the following article "Build Your First PHP for Android Application".

2. PL/PHP

Some database tasks involve very complex logical calculations, rather than simply using a few SQL statements to solve the problem. In order to reduce its complexity, many database solutions provide stored procedures, which encapsulate the logic to complete the task in a subroutine. The functions of any of these subroutines are actually just like functions in PHP.

Stored procedures can be written in corresponding SQL. For example, Microsoft's stored procedures use T-SQL, and Oracle uses PL-SQL. For example, the PostgreSQL database can execute stored procedures written in C, C++, Java, Ruby, Perl, and Python. With the PL/php open source project (https://public.commandprompt.com/projects/plphp/wiki), now you You can use PHP to write stored procedures.

After installing the PL/PHP project, you can execute stored procedures written in PHP under PostgreSQL. You can use the PHP syntax you are familiar with, which is very simple.

3. PHP-QT

PHP-QT project (http://developer.berlios.de/projects/php-qt/) allows you to use PHP language to write functions that implement QT. In other words, you can Use PHP-QT to write some powerful desktop applications. The so-called QT is a cross-platform C++ graphical user interface application framework. It provides application developers with all the functionality they need to build state-of-the-art graphical user interfaces. Qt is fully object-oriented, easily extensible, and allows true component programming.

But unfortunately, the development of this project has been a bit slow in recent years. If you are really interested, it is recommended to study the PHP-GTK project (http://gtk.php.net/)

4. Phuby

Recently, Ruby core team member Aaron Patterson completed phuby, which can run php applications under Rails applications. The address of the project is https://github.com/tenderlove/phuby. Although the project host Aaron has released several videos to prove that phuby can make php run under Rails, in fact, in the Rails community, phuby is probably just a Just an experimental product.

5. Another phuby

Sean Huber also released another project with the same name, also called phuby, but this one has nothing to do with the one introduced above. The project address is https://github.com/huberry/phuby. This project adds several interesting features to php, and you only need to set include_path in php to point to the location of phuby's library. Although the project is still in its early stages, it actually combines some features of PHP and Ruby.

6, Objective-PHP and Moka

Objective-PHP and Moka are two ambitious projects headed by Stephen Lerodiaconou. TObjective-PHP (https://github.com/stevegeek/moka) and Moka (https:/ /github.com/stevegeek/moka) These two projects are very ambitious projects developed by Stephen Lerodiaconou. They added Object-C language and Cocoa framework to the PHP language (Note: Cocoa is developed for the Mac OSX operating system language). The documentation in their project claims that these new features will appeal to the original Capucchino developers.

You can watch this video (http://vimeo.com/9838953) to learn about these two frameworks.

7. Php-serial

Do you want to control serial and parallel port devices such as video, audio or computer by writing PHP language? Now it can become a reality. It can be easily implemented using the open source project php-serial (http://code.google.com/p/php-serial/). For example, you only need to call the deviceSet() method and pass the serial port name in. Then you can use simple reading and writing methods, such as:

<ol class="dp-c">
<li class="alt"><span><span>  </span></span></li>
<li>
<span>deviceSet(</span><span class="string">'COM2'</span><span>);  </span>
</li>
<li class="alt">
<span class="vars">$seria</span><span>-->deviceOpen();  </span>
</li>
<li>
<span class="vars">$serial</span><span>->sendMessage(</span><span class="string">'Sending a message to the port!'</span><span>);  </span>
</li>
<li class="alt">
<span class="vars">$serial</span><span>->deviceClose();  </span>
</li>
<li><span>?> </span></li>
</ol>

8, Apns-PHP

in Apple’s operating system 3.0 and above, you can enjoy Apple's push information service, referred to as Apple Push Notification Service (APNS), and obtain all kinds of useful information in a timely manner.

Now, you can use PHP to implement this function. The apns-php project provides this function. The project address is http://code.google.com/p/apns-php/. The project’s documentation claims APNS API It was completed on December 17, 2010, and can provide new features such as custom reminder images and localized buttons.

There is a good introductory article to guide you in learning apns-php (http://blog.boxedice.com/2009/07/10/how-to-build-an-apple-push-notification- provider-server-tutorial/)

9. CFPropertyList

The cocoa framework uses property lists to manage serialized data. These property lists can be set through Apple's tools such as plutil. However, some developers hope to manage this data in a way they are familiar with. There are currently many open source projects that can achieve this purpose. For example, CFPropertyList is one of them. The project address is:

https://github.com/rodneyrehm/ CFPropertyList, which allows PHP developers to create property lists and then send them to iPhone applications.

http://publish.itpub.net/a2011/0119/1151/000001151724.shtml


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/445849.htmlTechArticle The open source world of PHP is quite exciting, and everyone is also exposed to many famous PHP open source projects, such as Drupal, Sugar CMS, Joomla, etc., but in this article, the author will select 9 of the latest...
Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

观察:将生成式AI应用于网络自动化有何潜力?观察:将生成式AI应用于网络自动化有何潜力?Aug 17, 2023 pm 07:57 PM

根据市场研究公司Omdia的一份最新报告,预计到2023年,生成式人工智能(GenAI)将成为一个引人注目的技术趋势,为企业和个人带来重要的应用,包括教育。在电信领域,GenAI的用例主要集中在提供个性化营销内容或支持更复杂的虚拟助手,以提升客户体验尽管生成式AI在网络运营中的应用并不明显,但EnterpriseWeb进行了一项有趣的概念验证,展示了该领域中生成式AI的潜力生成式AI在网络自动化方面的能力和限制生成式AI在网络运营中的早期应用之一是利用交互式指导替代工程手册来帮助安装网络元件,从

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么查找字符串是第几位php怎么查找字符串是第几位Apr 22, 2022 pm 06:48 PM

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

php怎么去掉字符串首位的tab空白符php怎么去掉字符串首位的tab空白符Apr 22, 2022 pm 07:11 PM

在php中,可以利用ltrim()函数来去掉字符串首位的tab空白符,语法为“ltrim(string)”;当只给ltrim()函数传入一个参数,用于规定要检查的字符串时,可删除该字符串开始位置的空白字符(例空格、tab制表符、换行符等)。

See all articles

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 Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft