reference/cubrid/functions/cubrid-pconnect-with-url.xml
73fae4ee51b644b72028e610abefefced57c18ad
...
...
@@ -154,10 +154,7 @@
154
154
<refsect1 role="returnvalues">
155
155
&reftitle.returnvalues;
156
156
<para>
157
-
Connection identifier, when process is successful.
158
-
</para>
159
-
<para>
160
-
&false;, when process is unsuccessful.
157
+
Connection identifier, when process is successful,&return.falseforfailure;.
161
158
</para>
162
159
</refsect1>
163
160
...
...
@@ -168,7 +165,7 @@
168
165
<programlisting role="php">
169
166
<![CDATA[
170
167
<?php
171
-
$conn_url = "CUBRID:127.0.0.1:33000:demodb:dba::"
168
+
$conn_url = "CUBRID:127.0.0.1:33000:demodb:dba::";
172
169
$con = cubrid_pconnect_with_url ($conn_url);
173
170

174
171
if ($con) {
...
...
@@ -194,7 +191,7 @@ if ($con) {
194
191
<programlisting role="php">
195
192
<![CDATA[
196
193
<?php
197
-
$conn_url = "CUBRID:127.0.0.1:33000:demodb:dba::?althost=10.34.63.132:33088&rctime=100"
194
+
$conn_url = "CUBRID:127.0.0.1:33000:demodb:dba::?althost=10.34.63.132:33088&rctime=100";
198
195
$con = cubrid_pconnect_with_url ($conn_url);
199
196

200
197
if ($con) {
201
198