关键词搜索

源码搜索 ×
×

PHP 常量/变量的定义和用法

发布2022-11-17浏览635次

详情内容

一、常量

  1. const VS = '1.0.0';//常量名称要大写字母
  2. const ED = 'utf-8';//常量常量名称要大写字母

使用:

dump(self::VS);exit;

二、变量

  1. class LebaifenPay
  2. {
  3. public $lbfpay_conf;//1.先定义
  4. public function __construct()
  5. {
  6. //初始化,取得微信支付参数
  7. $this->lbfpay_conf = system_cofing();//2.再赋值
  8. }
  9. /**
  10. * 创建
  11. *
  12. * @param $data
  13. * @return string
  14. * @throws ErrorException
  15. */
  16. public function buildRequestForm($data)
  17. {
  18. //3.引用
  19. $system_website=$this->lbfpay_conf['system_website'];
  20. dump($system_website);exit;

三、调用方法

要调用上面这种组成的LebaifenPay类

3.1 这种方法是调用不了的。这种是静态(::对应static

$result = \lfqpay\LebaifenPay::buildRequestForm($baiduparams);

public static function buildRequestForm($params)

3.2 这种方法才可以,要实例化

            $result = new \lfqpay\LebaifenPay;
            $result->buildRequestForm($params);

或者这样引用

  1. <?php
  2. class Test
  3. {
  4. public $a=null;
  5. function __construct()
  6. {
  7. $this->a = 10;
  8. }
  9. static function test1(){
  10. $a=new self();
  11. echo $a->a;
  12. //echo $obj->a;
  13. }
  14. }
  15. (new Test)->test1();
  16. ?>

相关技术文章

点击QQ咨询
开通会员
返回顶部
×
微信扫码支付
微信扫码支付
确定支付下载
请使用微信描二维码支付
×

提示信息

×

选择支付方式

  • 微信支付
  • 支付宝付款
确定支付下载