分类 PHP 下的文章

editor.md for laravel

传送门: https://github.com/douyasi/laravel-editor-md

editor.md 是一款高度可定制化的 markdown 编辑器,官方网站:https://pandao.github.io/editor.md/

兼容版本

本扩展包经过测试,适配 Laravel 5.1 以上稳定版本(5.0 版本理论上也是可行的,但未经测试)。

特别说明:
composer 分析某些依赖时可能会出现问题:比如在 Laravel 5.2 主项目中,安装本扩展包,可能会装上 5.3 版本的 illuminate/supportilluminate/contracts 相关依赖包,这样可能会造成 5.2 主项目出现错误。为此,本包在 composer.json 特别移除对 "illuminate/support": "~5.1" 的依赖。


- 阅读剩余部分 -

TinyMe - 基于flight与medoo构建的微型php框架

基于 flightmedoo 构建的微型php框架。

GitHub 仓库地址

安装

类似于 Laravel 项目的安装,设置服务器网站根目录到 public 文件夹,并使用 composer 来安装或更新依赖包等等操作。您可以在终端窗口执行以下命令来完成:

git clone https://github.com/ycrao/tinyme.git tinyme.dev
cd tinyme.dev
cp .env.example .env
vim .env
composer install
cd app
chmod -R 755 storage

演示站: http://tinyme.yas.so

- 阅读剩余部分 -

浏览器语言偏好侦测器

Laravel 框架侦测浏览器语言偏好,某些情况下存在 BUG ,它依赖于 Symfony\Component\HttpFoundation\RequestgetPreferredLanguage 方法。

问题主要表现为:在优先简体中文(其它非英语也有可能)偏好(Accept-Language:zh-CN,zh;q=0.8,en;q=0.6,zh-TW;q=0.4)的Chrome 浏览器下,仍会返回英文,即使存在可用的简体中文语言版本。在 stackoverflow 网站上有相关问题的讨论,部分答者建议使用不同语言对应不同 url 的方案。

- 阅读剩余部分 -

php curl获取https网站内容

有时候我们需要跟安全的 https 网站交互,获取对方内容,如果使用 curl 需要设置额外的选项。

下面给出php示例代码:

其中 cacert.pem 根CA证书文件可以去 http://curl.haxx.se/docs/caextract.html 下载。

$url = 'https://github.com/';  

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);

// Set so curl_exec returns the result instead of outputting it.
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

//verify ssl server
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);

//set CA Certs file path
curl_setopt($ch, CURLOPT_CAINFO, '/home/ssl/cacert.pem');

// Get the response and close the channel.
$response = curl_exec($ch);
curl_close($ch);

return $response;