質問編集履歴

2

対話シェルでのPHP実行結果の追加

2017/02/28 04:37

投稿

Booyang
Booyang

スコア8

test CHANGED
File without changes
test CHANGED
@@ -112,6 +112,68 @@
112
112
 
113
113
 
114
114
 
115
+ ```ここに言語を入力
116
+
117
+ [root@test conf.d]# php -i
118
+
119
+ phpinfo()
120
+
121
+ PHP Version => 5.6.30
122
+
123
+
124
+
125
+ -------中略-------------
126
+
127
+ This program makes use of the Zend Scripting Language Engine:
128
+
129
+ Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies
130
+
131
+ with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2016, by Zend Technologies
132
+
133
+ with Zend Guard Loader v3.3, Copyright (c) 1998-2015, by Zend Technologies
134
+
135
+
136
+
137
+ -------中略-------------
138
+
139
+
140
+
141
+ Zend Guard Loader
142
+
143
+
144
+
145
+ Zend Guard Loader => enabled
146
+
147
+ License Path =>
148
+
149
+ Obfuscation level => 0
150
+
151
+
152
+
153
+ -------後略-------------
154
+
155
+ ```
156
+
157
+
158
+
159
+ 対話シェルでのPHP実行(zendgurae関数)
160
+
161
+ ```ここに言語を入力
162
+
163
+ [root@test conf.d]# php -a;
164
+
165
+ Interactive shell
166
+
167
+
168
+
169
+ php > echo zend_loader_enabled();
170
+
171
+ 1
172
+
173
+ ```
174
+
175
+
176
+
115
177
  ###設置手順
116
178
 
117
179
  - サーバー上に[公式サイト](https://www.zend.com/en/products/loader/downloads#Linux)からZendGuardLoader.soをダウンロードし、/opt/remi/php56/root/usr/lib64/php/modules/ZendGuardLoader.soへコピー

1

php -i | grep "Zend Guard Loader" 結果の追加

2017/02/28 04:37

投稿

Booyang
Booyang

スコア8

test CHANGED
File without changes
test CHANGED
@@ -80,6 +80,20 @@
80
80
 
81
81
 
82
82
 
83
+ ```shell
84
+
85
+ [root@test php.d]# php -i | grep "Zend Guard Loader"
86
+
87
+ with Zend Guard Loader v3.3, Copyright (c) 1998-2015, by Zend Technologies
88
+
89
+ Zend Guard Loader
90
+
91
+ Zend Guard Loader => enabled
92
+
93
+ ```
94
+
95
+
96
+
83
97
  ###phpinfo()の結果
84
98
 
85
99
  ![Additional .ini files parsed](43bfe3fdb7d40e4fe771e808f340511a.jpeg)