定制 wecodemore/wp-ssl 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

wecodemore/wp-ssl

最新稳定版本:v1.0.1

Composer 安装命令:

composer require wecodemore/wp-ssl

包简介

Helper class for WordPress projects to see if something is really SSL or not

README 文档

README

Utility class for WordPress to check if a (local/on the current host) URL is accessible via SSL (or not).

Methods

To setup the class, you need just a relative path. This path gets added to get_site_url(). The second and third arguments are optional and can get omitted.

$ssl_utils = new \WCM\SSL\Check( $path );

$ssl_utils = new \WCM\SSL\Check( 'some/relative/path', 443, 12 );

The SSL $port defaults to 443, but can get set to something totally different. It can also get set later on by using the setter.

$ssl_utils->setPort( 12345 );

The class can as well try to figure it out for you:

$guessed_port = $ssl_utils->getPort();

To find out if the current host is running on ssl, you can simply check

$is_ssl = $ssl_utils->isSSL();

And finally retrieving the SSL URl is as easy as just calling

$ssl_url = $ssl_utils->getURl();

To use the class on a different site than the current one in a Multisite install, you can explicitly set the $blog_id either during instantiating the class or with the setter.

$ssl_url = $ssl_utils->setBlogID( 12 );

All mentioned setter methods are chainable:

$ssl_utils = new \WCM\SSL\Check( 'example/path' );
$ssl_utils
    ->setPort( 443 )
    ->setBlogID( 12 );

Install

Best served via Composer:

"wecodemore/wp-ssl" : "^1.0"

统计信息

  • 总下载量: 12
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 6
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-01-14