Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial 【课题】PHP + 浏览器 开发本地应用的可行性

【课题】PHP + 浏览器 开发本地应用的可行性

Jun 23, 2016 pm 02:20 PM

本地应用 ajax php

以浏览器为GUI;以AJAX为通信手段。不适合大型应用程序,中小型也行。
我觉得要解决的问题主要是AJAX通信的问题。可以考虑使用ajax长连接。事件触发机制是否可以找到。

回复讨论(解决方案)

既然是“本地应用”,那么 AJAX 和谁通信呢?

楼主的意思应该是这个本地程序首先集成了一个php环境,所以ajax和环境内的服务器比如apache通信....

实现肯定没问题了,至于通信,估计只是模拟通话之类的

我原来的公司就是用php开发进销存,CRM与财务软件的

既然是“本地应用”,那么 AJAX 和谁通信呢?

不用ajax不容易打通虚拟机与浏览器,如果有必要用apache也没办法。



楼主的意思应该是这个本地程序首先集成了一个php环境,所以ajax和环境内的服务器比如apache通信.... 是的。

实现肯定没问题了,至于通信,估计只是模拟通话之类的
主要是怎么解决连续的显示输出的性能开销问题。


我原来的公司就是用php开发进销存,CRM与财务软件的

我用浏览器作为GUI,怎么解决连续的显示输出的性能开销问题。

可行性分析:
1.通用性极弱,只能面向特定用户
2.……

如果是需要 web 服务器,那么就不能称之为“本地应用”

如果是需要 web 服务器,那么就不能称之为“本地应用” 没有办法啊,只能开个服务进程了。

那不就和普通的网站开发一样了吗?
还存在技术难度吗?

那不就和普通的网站开发一样了吗?
还存在技术难度吗? 一个页面之中需要交互。起到RIA中的javascript的作用

 本地应用?能不能让用户妥协,用最新的浏览器, 意思是支持websocket那种
然后上nodejs + socket.io库,用不到二十行,一个简易的服务器推送多人聊天系统就可以诞生了。

二十行特指nodejs创建服务器的代码。

 本地应用?能不能让用户妥协,用最新的浏览器, 意思是支持websocket那种
然后上nodejs + socket.io库,用不到二十行,一个简易的服务器推送多人聊天系统就可以诞生了。

偶把csdn的 socket.io 杀掉了,至今不敢把它复活……


 本地应用?能不能让用户妥协,用最新的浏览器, 意思是支持websocket那种
然后上nodejs + socket.io库,用不到二十行,一个简易的服务器推送多人聊天系统就可以诞生了。

偶把csdn的 socket.io 杀掉了,至今不敢把它复活……
应该你的浏览器不支持websocket吧,如果不支持那socket.io又会走回轮询那条老路。


 本地应用?能不能让用户妥协,用最新的浏览器, 意思是支持websocket那种
然后上nodejs + socket.io库,用不到二十行,一个简易的服务器推送多人聊天系统就可以诞生了。

偶把csdn的 socket.io 杀掉了,至今不敢把它复活……

php本地应用可行的,你看看Tide这个开发工具,可以把很多脚本与服务器套件打包,一个php很少的。还不清楚他到底乍样运作的。

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

How to debug CLI mode in PHPStorm? How to debug CLI mode in PHPStorm? Apr 01, 2025 pm 02:57 PM

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

See all articles