Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有任何方法可以与 POS 设备、收银机和磁卡读卡器与 PHP 进行通信。我所说的通信是指读取该设备的输出。
谢谢你。
这些设备通常支持串行通信。据我所知,PHP 没有内置的串行终端支持,但这里有一个可以促进它的类。
除此之外,根据您运行的平台,读取和写入串行端口可能仅包括从字符设备读取和写入正确的字节流,例如在设备的文件描述符上/dev/ttyS0使用。fopen() fread() fwrite()
/dev/ttyS0
fopen() fread() fwrite()