是否有可能让PHP与运行的C#窗体应用程序进行交互?
我以前创建过COM公开的DLL,并使用DOTNET对象从PHP中调用它们,但是它似乎不适合我使用"Windows表单应用程序“。我是否需要创建COM DLL并让它以某种方式与Windows窗体应用程序交互?
编辑:
我决定用.NET3.5客户端框架编写一个快速的EXE,然后查看这些方法是否可用。看来我现在是运行方法了,bizzare!我想只有v3.5客户端才有可能,而不是v4.5。
这是C#和:
C#
using System;
using System.Collections.Generic;
using System.Compo
问题
我将PHP版本从7.2更新为8.0.5
我跟随本指南更新我的PHP
我运行这个sudo apt-get purge php7.*来删除我的php 7版本。
现在,当我浏览我的网站时,我只得到php codeliek。
<?php
/* ton of code here */
当我启用
sudo a2enmod proxy_fcgi setenvif
sudo a2enconf php8.0-fpm
我得到了一个错误
Service Unavailable
The server is temporarily unable to service your request due to
The spelling service was not found: (spellchecker.php)
尝试在TinyMCE编辑器中集成拼写检查,但不确定为什么在单击工具栏上的ABC图标时会出现此错误
这就是它的实现方式
// Init params
plugins : ['spellchecker],
toolbar: "spellchecker",
spellchecker_rpc_url: 'spellchecker.php',
我还从复制了PHP包进行拼写检查
我正试图在Docker中创建一个新的映像,但出现了以下问题
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/a/apt/apt-utils_2.4.7_amd64.deb 404 Not Found [IP: ]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
The command '/bin/sh -c apt-get install -y apt-utils' retur
由于我使用MongoDB作为应用程序的数据库,我在应用程序中安装了MongoDB和jessenger/laravel-mongodb by composer。
设置后,我得到错误。
FatalErrorException in Client.php line 81:
Class 'MongoDB\Driver\Manager' not found
但我相信它已经安装了所有的要求。
蒙戈已经安装好了。
$ mongo --version
MongoDB shell version v3.4.0
PHP驱动程序也已安装。
$ brew install php55-mongodb
W
试着运行一个phpunit测试,但是当我运行测试时.
phpunit MyTest.php
...I获得错误:
PHP Fatal error: Class 'Phar' not found in /usr/local/bin/phpunit on line 611
php手册上写着;我使用的是PHP 5.3.17。如何排除此错误?
编辑
php -i | grep Phar
什么都不回。