mysqli_class_mysqli_reflection.phpt 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355
  1. --TEST--
  2. Interface of the class mysqli - Reflection
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifemb.inc');
  7. require_once('connect.inc');
  8. /*
  9. Let's not deal with cross-version issues in the EXPECTF/UEXPECTF.
  10. Most of the things which we test are covered by mysqli_class_*_interface.phpt.
  11. Those tests go into the details and are aimed to be a development tool, no more.
  12. */
  13. if (!$IS_MYSQLND)
  14. die("skip Test has been written for the latest version of mysqlnd only");
  15. if ($MYSQLND_VERSION < 50004)
  16. die("skip Test requires mysqlnd Revision 5.0.4 or newer");
  17. ?>
  18. --FILE--
  19. <?php
  20. require_once('reflection_tools.inc');
  21. $class = new ReflectionClass('mysqli');
  22. inspectClass($class);
  23. print "done!\n";
  24. ?>
  25. --EXPECTF--
  26. Inspecting class 'mysqli'
  27. isInternal: yes
  28. isUserDefined: no
  29. isInstantiable: yes
  30. isInterface: no
  31. isAbstract: no
  32. isFinal: no
  33. isIteratable: no
  34. Modifiers: '0'
  35. Parent Class: ''
  36. Extension: 'mysqli'
  37. Inspecting method 'mysqli'
  38. isFinal: no
  39. isAbstract: no
  40. isPublic: yes
  41. isPrivate: no
  42. isProtected: no
  43. isStatic: no
  44. isConstructor: yes
  45. isDestructor: no
  46. isInternal: yes
  47. isUserDefined: no
  48. returnsReference: no
  49. Modifiers: 8448
  50. Number of Parameters: 6
  51. Number of Required Parameters: 0
  52. Inspecting parameter 'host' of method 'mysqli'
  53. isArray: no
  54. allowsNull: no
  55. isPassedByReference: no
  56. isOptional: yes
  57. isDefaultValueAvailable: no
  58. Inspecting parameter 'user' of method 'mysqli'
  59. isArray: no
  60. allowsNull: no
  61. isPassedByReference: no
  62. isOptional: yes
  63. isDefaultValueAvailable: no
  64. Inspecting parameter 'password' of method 'mysqli'
  65. isArray: no
  66. allowsNull: no
  67. isPassedByReference: no
  68. isOptional: yes
  69. isDefaultValueAvailable: no
  70. Inspecting parameter 'database' of method 'mysqli'
  71. isArray: no
  72. allowsNull: no
  73. isPassedByReference: no
  74. isOptional: yes
  75. isDefaultValueAvailable: no
  76. Inspecting parameter 'port' of method 'mysqli'
  77. isArray: no
  78. allowsNull: no
  79. isPassedByReference: no
  80. isOptional: yes
  81. isDefaultValueAvailable: no
  82. Inspecting parameter 'socket' of method 'mysqli'
  83. isArray: no
  84. allowsNull: no
  85. isPassedByReference: no
  86. isOptional: yes
  87. isDefaultValueAvailable: no
  88. Inspecting method 'autocommit'
  89. isFinal: no
  90. isAbstract: no
  91. isPublic: yes
  92. isPrivate: no
  93. isProtected: no
  94. isStatic: no
  95. isConstructor: no
  96. isDestructor: no
  97. isInternal: yes
  98. isUserDefined: no
  99. returnsReference: no
  100. Modifiers: 256
  101. Number of Parameters: 1
  102. Number of Required Parameters: 1
  103. Inspecting parameter 'mode' of method 'autocommit'
  104. isArray: no
  105. allowsNull: no
  106. isPassedByReference: no
  107. isOptional: no
  108. isDefaultValueAvailable: no
  109. Inspecting method 'begin_transaction'
  110. isFinal: no
  111. isAbstract: no
  112. isPublic: yes
  113. isPrivate: no
  114. isProtected: no
  115. isStatic: no
  116. isConstructor: no
  117. isDestructor: no
  118. isInternal: yes
  119. isUserDefined: no
  120. returnsReference: no
  121. Modifiers: 256
  122. Number of Parameters: 2
  123. Number of Required Parameters: 0
  124. Inspecting parameter 'flags' of method 'begin_transaction'
  125. isArray: no
  126. allowsNull: no
  127. isPassedByReference: no
  128. isOptional: yes
  129. isDefaultValueAvailable: no
  130. Inspecting parameter 'name' of method 'begin_transaction'
  131. isArray: no
  132. allowsNull: no
  133. isPassedByReference: no
  134. isOptional: yes
  135. isDefaultValueAvailable: no
  136. Inspecting method 'change_user'
  137. isFinal: no
  138. isAbstract: no
  139. isPublic: yes
  140. isPrivate: no
  141. isProtected: no
  142. isStatic: no
  143. isConstructor: no
  144. isDestructor: no
  145. isInternal: yes
  146. isUserDefined: no
  147. returnsReference: no
  148. Modifiers: 256
  149. Number of Parameters: 3
  150. Number of Required Parameters: 3
  151. Inspecting parameter 'user' of method 'change_user'
  152. isArray: no
  153. allowsNull: no
  154. isPassedByReference: no
  155. isOptional: no
  156. isDefaultValueAvailable: no
  157. Inspecting parameter 'password' of method 'change_user'
  158. isArray: no
  159. allowsNull: no
  160. isPassedByReference: no
  161. isOptional: no
  162. isDefaultValueAvailable: no
  163. Inspecting parameter 'database' of method 'change_user'
  164. isArray: no
  165. allowsNull: no
  166. isPassedByReference: no
  167. isOptional: no
  168. isDefaultValueAvailable: no
  169. Inspecting method 'character_set_name'
  170. isFinal: no
  171. isAbstract: no
  172. isPublic: yes
  173. isPrivate: no
  174. isProtected: no
  175. isStatic: no
  176. isConstructor: no
  177. isDestructor: no
  178. isInternal: yes
  179. isUserDefined: no
  180. returnsReference: no
  181. Modifiers: 256
  182. Number of Parameters: 0
  183. Number of Required Parameters: 0
  184. Inspecting method 'close'
  185. isFinal: no
  186. isAbstract: no
  187. isPublic: yes
  188. isPrivate: no
  189. isProtected: no
  190. isStatic: no
  191. isConstructor: no
  192. isDestructor: no
  193. isInternal: yes
  194. isUserDefined: no
  195. returnsReference: no
  196. Modifiers: 256
  197. Number of Parameters: 0
  198. Number of Required Parameters: 0
  199. Inspecting method 'commit'
  200. isFinal: no
  201. isAbstract: no
  202. isPublic: yes
  203. isPrivate: no
  204. isProtected: no
  205. isStatic: no
  206. isConstructor: no
  207. isDestructor: no
  208. isInternal: yes
  209. isUserDefined: no
  210. returnsReference: no
  211. Modifiers: 256
  212. Number of Parameters: 2
  213. Number of Required Parameters: 0
  214. Inspecting parameter 'flags' of method 'commit'
  215. isArray: no
  216. allowsNull: no
  217. isPassedByReference: no
  218. isOptional: yes
  219. isDefaultValueAvailable: no
  220. Inspecting parameter 'name' of method 'commit'
  221. isArray: no
  222. allowsNull: no
  223. isPassedByReference: no
  224. isOptional: yes
  225. isDefaultValueAvailable: no
  226. Inspecting method 'connect'
  227. isFinal: no
  228. isAbstract: no
  229. isPublic: yes
  230. isPrivate: no
  231. isProtected: no
  232. isStatic: no
  233. isConstructor: no
  234. isDestructor: no
  235. isInternal: yes
  236. isUserDefined: no
  237. returnsReference: no
  238. Modifiers: 256
  239. Number of Parameters: 6
  240. Number of Required Parameters: 0
  241. Inspecting parameter 'host' of method 'connect'
  242. isArray: no
  243. allowsNull: no
  244. isPassedByReference: no
  245. isOptional: yes
  246. isDefaultValueAvailable: no
  247. Inspecting parameter 'user' of method 'connect'
  248. isArray: no
  249. allowsNull: no
  250. isPassedByReference: no
  251. isOptional: yes
  252. isDefaultValueAvailable: no
  253. Inspecting parameter 'password' of method 'connect'
  254. isArray: no
  255. allowsNull: no
  256. isPassedByReference: no
  257. isOptional: yes
  258. isDefaultValueAvailable: no
  259. Inspecting parameter 'database' of method 'connect'
  260. isArray: no
  261. allowsNull: no
  262. isPassedByReference: no
  263. isOptional: yes
  264. isDefaultValueAvailable: no
  265. Inspecting parameter 'port' of method 'connect'
  266. isArray: no
  267. allowsNull: no
  268. isPassedByReference: no
  269. isOptional: yes
  270. isDefaultValueAvailable: no
  271. Inspecting parameter 'socket' of method 'connect'
  272. isArray: no
  273. allowsNull: no
  274. isPassedByReference: no
  275. isOptional: yes
  276. isDefaultValueAvailable: no
  277. Inspecting method 'debug'
  278. isFinal: no
  279. isAbstract: no
  280. isPublic: yes
  281. isPrivate: no
  282. isProtected: no
  283. isStatic: no
  284. isConstructor: no
  285. isDestructor: no
  286. isInternal: yes
  287. isUserDefined: no
  288. returnsReference: no
  289. Modifiers: 256
  290. Number of Parameters: 1
  291. Number of Required Parameters: 1
  292. Inspecting parameter 'debug_options' of method 'debug'
  293. isArray: no
  294. allowsNull: no
  295. isPassedByReference: no
  296. isOptional: no
  297. isDefaultValueAvailable: no
  298. Inspecting method 'dump_debug_info'
  299. isFinal: no
  300. isAbstract: no
  301. isPublic: yes
  302. isPrivate: no
  303. isProtected: no
  304. isStatic: no
  305. isConstructor: no
  306. isDestructor: no
  307. isInternal: yes
  308. isUserDefined: no
  309. returnsReference: no
  310. Modifiers: 256
  311. Number of Parameters: 0
  312. Number of Required Parameters: 0
  313. Inspecting method 'escape_string'
  314. isFinal: no
  315. isAbstract: no
  316. isPublic: yes
  317. isPrivate: no
  318. isProtected: no
  319. isStatic: no
  320. isConstructor: no
  321. isDestructor: no
  322. isInternal: yes
  323. isUserDefined: no
  324. returnsReference: no
  325. Modifiers: 256
  326. Number of Parameters: 1
  327. Number of Required Parameters: 1
  328. Inspecting parameter 'string_to_escape' of method 'escape_string'
  329. isArray: no
  330. allowsNull: no
  331. isPassedByReference: no
  332. isOptional: no
  333. isDefaultValueAvailable: no
  334. Inspecting method 'get_charset'
  335. isFinal: no
  336. isAbstract: no
  337. isPublic: yes
  338. isPrivate: no
  339. isProtected: no
  340. isStatic: no
  341. isConstructor: no
  342. isDestructor: no
  343. isInternal: yes
  344. isUserDefined: no
  345. returnsReference: no
  346. Modifiers: 256
  347. Number of Parameters: 0
  348. Number of Required Parameters: 0
  349. Inspecting method 'get_client_info'
  350. isFinal: no
  351. isAbstract: no
  352. isPublic: yes
  353. isPrivate: no
  354. isProtected: no
  355. isStatic: no
  356. isConstructor: no
  357. isDestructor: no
  358. isInternal: yes
  359. isUserDefined: no
  360. returnsReference: no
  361. Modifiers: 256
  362. Number of Parameters: 0
  363. Number of Required Parameters: 0
  364. Inspecting method 'get_connection_stats'
  365. isFinal: no
  366. isAbstract: no
  367. isPublic: yes
  368. isPrivate: no
  369. isProtected: no
  370. isStatic: no
  371. isConstructor: no
  372. isDestructor: no
  373. isInternal: yes
  374. isUserDefined: no
  375. returnsReference: no
  376. Modifiers: 256
  377. Number of Parameters: 0
  378. Number of Required Parameters: 0
  379. Inspecting method 'get_server_info'
  380. isFinal: no
  381. isAbstract: no
  382. isPublic: yes
  383. isPrivate: no
  384. isProtected: no
  385. isStatic: no
  386. isConstructor: no
  387. isDestructor: no
  388. isInternal: yes
  389. isUserDefined: no
  390. returnsReference: no
  391. Modifiers: 256
  392. Number of Parameters: 0
  393. Number of Required Parameters: 0
  394. Inspecting method 'get_warnings'
  395. isFinal: no
  396. isAbstract: no
  397. isPublic: yes
  398. isPrivate: no
  399. isProtected: no
  400. isStatic: no
  401. isConstructor: no
  402. isDestructor: no
  403. isInternal: yes
  404. isUserDefined: no
  405. returnsReference: no
  406. Modifiers: 256
  407. Number of Parameters: 0
  408. Number of Required Parameters: 0
  409. Inspecting method 'init'
  410. isFinal: no
  411. isAbstract: no
  412. isPublic: yes
  413. isPrivate: no
  414. isProtected: no
  415. isStatic: no
  416. isConstructor: no
  417. isDestructor: no
  418. isInternal: yes
  419. isUserDefined: no
  420. returnsReference: no
  421. Modifiers: 256
  422. Number of Parameters: 0
  423. Number of Required Parameters: 0
  424. Inspecting method 'kill'
  425. isFinal: no
  426. isAbstract: no
  427. isPublic: yes
  428. isPrivate: no
  429. isProtected: no
  430. isStatic: no
  431. isConstructor: no
  432. isDestructor: no
  433. isInternal: yes
  434. isUserDefined: no
  435. returnsReference: no
  436. Modifiers: 256
  437. Number of Parameters: 1
  438. Number of Required Parameters: 1
  439. Inspecting parameter 'connection_id' of method 'kill'
  440. isArray: no
  441. allowsNull: no
  442. isPassedByReference: no
  443. isOptional: no
  444. isDefaultValueAvailable: no
  445. Inspecting method 'more_results'
  446. isFinal: no
  447. isAbstract: no
  448. isPublic: yes
  449. isPrivate: no
  450. isProtected: no
  451. isStatic: no
  452. isConstructor: no
  453. isDestructor: no
  454. isInternal: yes
  455. isUserDefined: no
  456. returnsReference: no
  457. Modifiers: 256
  458. Number of Parameters: 0
  459. Number of Required Parameters: 0
  460. Inspecting method 'multi_query'
  461. isFinal: no
  462. isAbstract: no
  463. isPublic: yes
  464. isPrivate: no
  465. isProtected: no
  466. isStatic: no
  467. isConstructor: no
  468. isDestructor: no
  469. isInternal: yes
  470. isUserDefined: no
  471. returnsReference: no
  472. Modifiers: 256
  473. Number of Parameters: 1
  474. Number of Required Parameters: 1
  475. Inspecting parameter 'query' of method 'multi_query'
  476. isArray: no
  477. allowsNull: no
  478. isPassedByReference: no
  479. isOptional: no
  480. isDefaultValueAvailable: no
  481. Inspecting method 'mysqli'
  482. isFinal: no
  483. isAbstract: no
  484. isPublic: yes
  485. isPrivate: no
  486. isProtected: no
  487. isStatic: no
  488. isConstructor: yes
  489. isDestructor: no
  490. isInternal: yes
  491. isUserDefined: no
  492. returnsReference: no
  493. Modifiers: 8448
  494. Number of Parameters: 6
  495. Number of Required Parameters: 0
  496. Inspecting parameter 'host' of method 'mysqli'
  497. isArray: no
  498. allowsNull: no
  499. isPassedByReference: no
  500. isOptional: yes
  501. isDefaultValueAvailable: no
  502. Inspecting parameter 'user' of method 'mysqli'
  503. isArray: no
  504. allowsNull: no
  505. isPassedByReference: no
  506. isOptional: yes
  507. isDefaultValueAvailable: no
  508. Inspecting parameter 'password' of method 'mysqli'
  509. isArray: no
  510. allowsNull: no
  511. isPassedByReference: no
  512. isOptional: yes
  513. isDefaultValueAvailable: no
  514. Inspecting parameter 'database' of method 'mysqli'
  515. isArray: no
  516. allowsNull: no
  517. isPassedByReference: no
  518. isOptional: yes
  519. isDefaultValueAvailable: no
  520. Inspecting parameter 'port' of method 'mysqli'
  521. isArray: no
  522. allowsNull: no
  523. isPassedByReference: no
  524. isOptional: yes
  525. isDefaultValueAvailable: no
  526. Inspecting parameter 'socket' of method 'mysqli'
  527. isArray: no
  528. allowsNull: no
  529. isPassedByReference: no
  530. isOptional: yes
  531. isDefaultValueAvailable: no
  532. Inspecting method 'next_result'
  533. isFinal: no
  534. isAbstract: no
  535. isPublic: yes
  536. isPrivate: no
  537. isProtected: no
  538. isStatic: no
  539. isConstructor: no
  540. isDestructor: no
  541. isInternal: yes
  542. isUserDefined: no
  543. returnsReference: no
  544. Modifiers: 256
  545. Number of Parameters: 0
  546. Number of Required Parameters: 0
  547. Inspecting method 'options'
  548. isFinal: no
  549. isAbstract: no
  550. isPublic: yes
  551. isPrivate: no
  552. isProtected: no
  553. isStatic: no
  554. isConstructor: no
  555. isDestructor: no
  556. isInternal: yes
  557. isUserDefined: no
  558. returnsReference: no
  559. Modifiers: 256
  560. Number of Parameters: 2
  561. Number of Required Parameters: 2
  562. Inspecting parameter 'option' of method 'options'
  563. isArray: no
  564. allowsNull: no
  565. isPassedByReference: no
  566. isOptional: no
  567. isDefaultValueAvailable: no
  568. Inspecting parameter 'value' of method 'options'
  569. isArray: no
  570. allowsNull: no
  571. isPassedByReference: no
  572. isOptional: no
  573. isDefaultValueAvailable: no
  574. Inspecting method 'ping'
  575. isFinal: no
  576. isAbstract: no
  577. isPublic: yes
  578. isPrivate: no
  579. isProtected: no
  580. isStatic: no
  581. isConstructor: no
  582. isDestructor: no
  583. isInternal: yes
  584. isUserDefined: no
  585. returnsReference: no
  586. Modifiers: 256
  587. Number of Parameters: 0
  588. Number of Required Parameters: 0
  589. Inspecting method 'poll'
  590. isFinal: no
  591. isAbstract: no
  592. isPublic: yes
  593. isPrivate: no
  594. isProtected: no
  595. isStatic: yes
  596. isConstructor: no
  597. isDestructor: no
  598. isInternal: yes
  599. isUserDefined: no
  600. returnsReference: no
  601. Modifiers: 268435713
  602. Number of Parameters: 5
  603. Number of Required Parameters: 4
  604. Inspecting parameter 'read' of method 'poll'
  605. isArray: yes
  606. allowsNull: yes
  607. isPassedByReference: yes
  608. isOptional: no
  609. isDefaultValueAvailable: no
  610. Inspecting parameter 'write' of method 'poll'
  611. isArray: yes
  612. allowsNull: yes
  613. isPassedByReference: yes
  614. isOptional: no
  615. isDefaultValueAvailable: no
  616. Inspecting parameter 'error' of method 'poll'
  617. isArray: yes
  618. allowsNull: yes
  619. isPassedByReference: yes
  620. isOptional: no
  621. isDefaultValueAvailable: no
  622. Inspecting parameter 'sec' of method 'poll'
  623. isArray: no
  624. allowsNull: no
  625. isPassedByReference: no
  626. isOptional: no
  627. isDefaultValueAvailable: no
  628. Inspecting parameter 'usec' of method 'poll'
  629. isArray: no
  630. allowsNull: no
  631. isPassedByReference: no
  632. isOptional: yes
  633. isDefaultValueAvailable: no
  634. Inspecting method 'prepare'
  635. isFinal: no
  636. isAbstract: no
  637. isPublic: yes
  638. isPrivate: no
  639. isProtected: no
  640. isStatic: no
  641. isConstructor: no
  642. isDestructor: no
  643. isInternal: yes
  644. isUserDefined: no
  645. returnsReference: no
  646. Modifiers: 256
  647. Number of Parameters: 1
  648. Number of Required Parameters: 1
  649. Inspecting parameter 'query' of method 'prepare'
  650. isArray: no
  651. allowsNull: no
  652. isPassedByReference: no
  653. isOptional: no
  654. isDefaultValueAvailable: no
  655. Inspecting method 'query'
  656. isFinal: no
  657. isAbstract: no
  658. isPublic: yes
  659. isPrivate: no
  660. isProtected: no
  661. isStatic: no
  662. isConstructor: no
  663. isDestructor: no
  664. isInternal: yes
  665. isUserDefined: no
  666. returnsReference: no
  667. Modifiers: 256
  668. Number of Parameters: 1
  669. Number of Required Parameters: 1
  670. Inspecting parameter 'query' of method 'query'
  671. isArray: no
  672. allowsNull: no
  673. isPassedByReference: no
  674. isOptional: no
  675. isDefaultValueAvailable: no
  676. Inspecting method 'real_connect'
  677. isFinal: no
  678. isAbstract: no
  679. isPublic: yes
  680. isPrivate: no
  681. isProtected: no
  682. isStatic: no
  683. isConstructor: no
  684. isDestructor: no
  685. isInternal: yes
  686. isUserDefined: no
  687. returnsReference: no
  688. Modifiers: 256
  689. Number of Parameters: 7
  690. Number of Required Parameters: 0
  691. Inspecting parameter 'host' of method 'real_connect'
  692. isArray: no
  693. allowsNull: no
  694. isPassedByReference: no
  695. isOptional: yes
  696. isDefaultValueAvailable: no
  697. Inspecting parameter 'user' of method 'real_connect'
  698. isArray: no
  699. allowsNull: no
  700. isPassedByReference: no
  701. isOptional: yes
  702. isDefaultValueAvailable: no
  703. Inspecting parameter 'password' of method 'real_connect'
  704. isArray: no
  705. allowsNull: no
  706. isPassedByReference: no
  707. isOptional: yes
  708. isDefaultValueAvailable: no
  709. Inspecting parameter 'database' of method 'real_connect'
  710. isArray: no
  711. allowsNull: no
  712. isPassedByReference: no
  713. isOptional: yes
  714. isDefaultValueAvailable: no
  715. Inspecting parameter 'port' of method 'real_connect'
  716. isArray: no
  717. allowsNull: no
  718. isPassedByReference: no
  719. isOptional: yes
  720. isDefaultValueAvailable: no
  721. Inspecting parameter 'socket' of method 'real_connect'
  722. isArray: no
  723. allowsNull: no
  724. isPassedByReference: no
  725. isOptional: yes
  726. isDefaultValueAvailable: no
  727. Inspecting parameter 'flags' of method 'real_connect'
  728. isArray: no
  729. allowsNull: no
  730. isPassedByReference: no
  731. isOptional: yes
  732. isDefaultValueAvailable: no
  733. Inspecting method 'real_escape_string'
  734. isFinal: no
  735. isAbstract: no
  736. isPublic: yes
  737. isPrivate: no
  738. isProtected: no
  739. isStatic: no
  740. isConstructor: no
  741. isDestructor: no
  742. isInternal: yes
  743. isUserDefined: no
  744. returnsReference: no
  745. Modifiers: 256
  746. Number of Parameters: 1
  747. Number of Required Parameters: 1
  748. Inspecting parameter 'string_to_escape' of method 'real_escape_string'
  749. isArray: no
  750. allowsNull: no
  751. isPassedByReference: no
  752. isOptional: no
  753. isDefaultValueAvailable: no
  754. Inspecting method 'real_query'
  755. isFinal: no
  756. isAbstract: no
  757. isPublic: yes
  758. isPrivate: no
  759. isProtected: no
  760. isStatic: no
  761. isConstructor: no
  762. isDestructor: no
  763. isInternal: yes
  764. isUserDefined: no
  765. returnsReference: no
  766. Modifiers: 256
  767. Number of Parameters: 1
  768. Number of Required Parameters: 1
  769. Inspecting parameter 'query' of method 'real_query'
  770. isArray: no
  771. allowsNull: no
  772. isPassedByReference: no
  773. isOptional: no
  774. isDefaultValueAvailable: no
  775. Inspecting method 'reap_async_query'
  776. isFinal: no
  777. isAbstract: no
  778. isPublic: yes
  779. isPrivate: no
  780. isProtected: no
  781. isStatic: no
  782. isConstructor: no
  783. isDestructor: no
  784. isInternal: yes
  785. isUserDefined: no
  786. returnsReference: no
  787. Modifiers: 256
  788. Number of Parameters: 0
  789. Number of Required Parameters: 0
  790. Inspecting method 'refresh'
  791. isFinal: no
  792. isAbstract: no
  793. isPublic: yes
  794. isPrivate: no
  795. isProtected: no
  796. isStatic: no
  797. isConstructor: no
  798. isDestructor: no
  799. isInternal: yes
  800. isUserDefined: no
  801. returnsReference: no
  802. Modifiers: 256
  803. Number of Parameters: 1
  804. Number of Required Parameters: 1
  805. Inspecting parameter 'options' of method 'refresh'
  806. isArray: no
  807. allowsNull: no
  808. isPassedByReference: no
  809. isOptional: no
  810. isDefaultValueAvailable: no
  811. Inspecting method 'release_savepoint'
  812. isFinal: no
  813. isAbstract: no
  814. isPublic: yes
  815. isPrivate: no
  816. isProtected: no
  817. isStatic: no
  818. isConstructor: no
  819. isDestructor: no
  820. isInternal: yes
  821. isUserDefined: no
  822. returnsReference: no
  823. Modifiers: 256
  824. Number of Parameters: 1
  825. Number of Required Parameters: 1
  826. Inspecting parameter 'name' of method 'release_savepoint'
  827. isArray: no
  828. allowsNull: no
  829. isPassedByReference: no
  830. isOptional: no
  831. isDefaultValueAvailable: no
  832. Inspecting method 'rollback'
  833. isFinal: no
  834. isAbstract: no
  835. isPublic: yes
  836. isPrivate: no
  837. isProtected: no
  838. isStatic: no
  839. isConstructor: no
  840. isDestructor: no
  841. isInternal: yes
  842. isUserDefined: no
  843. returnsReference: no
  844. Modifiers: 256
  845. Number of Parameters: 2
  846. Number of Required Parameters: 0
  847. Inspecting parameter 'flags' of method 'rollback'
  848. isArray: no
  849. allowsNull: no
  850. isPassedByReference: no
  851. isOptional: yes
  852. isDefaultValueAvailable: no
  853. Inspecting parameter 'name' of method 'rollback'
  854. isArray: no
  855. allowsNull: no
  856. isPassedByReference: no
  857. isOptional: yes
  858. isDefaultValueAvailable: no
  859. Inspecting method 'savepoint'
  860. isFinal: no
  861. isAbstract: no
  862. isPublic: yes
  863. isPrivate: no
  864. isProtected: no
  865. isStatic: no
  866. isConstructor: no
  867. isDestructor: no
  868. isInternal: yes
  869. isUserDefined: no
  870. returnsReference: no
  871. Modifiers: 256
  872. Number of Parameters: 1
  873. Number of Required Parameters: 1
  874. Inspecting parameter 'name' of method 'savepoint'
  875. isArray: no
  876. allowsNull: no
  877. isPassedByReference: no
  878. isOptional: no
  879. isDefaultValueAvailable: no
  880. Inspecting method 'select_db'
  881. isFinal: no
  882. isAbstract: no
  883. isPublic: yes
  884. isPrivate: no
  885. isProtected: no
  886. isStatic: no
  887. isConstructor: no
  888. isDestructor: no
  889. isInternal: yes
  890. isUserDefined: no
  891. returnsReference: no
  892. Modifiers: 256
  893. Number of Parameters: 1
  894. Number of Required Parameters: 1
  895. Inspecting parameter 'database' of method 'select_db'
  896. isArray: no
  897. allowsNull: no
  898. isPassedByReference: no
  899. isOptional: no
  900. isDefaultValueAvailable: no
  901. Inspecting method 'set_charset'
  902. isFinal: no
  903. isAbstract: no
  904. isPublic: yes
  905. isPrivate: no
  906. isProtected: no
  907. isStatic: no
  908. isConstructor: no
  909. isDestructor: no
  910. isInternal: yes
  911. isUserDefined: no
  912. returnsReference: no
  913. Modifiers: 256
  914. Number of Parameters: 1
  915. Number of Required Parameters: 1
  916. Inspecting parameter 'charset' of method 'set_charset'
  917. isArray: no
  918. allowsNull: no
  919. isPassedByReference: no
  920. isOptional: no
  921. isDefaultValueAvailable: no
  922. Inspecting method 'set_opt'
  923. isFinal: no
  924. isAbstract: no
  925. isPublic: yes
  926. isPrivate: no
  927. isProtected: no
  928. isStatic: no
  929. isConstructor: no
  930. isDestructor: no
  931. isInternal: yes
  932. isUserDefined: no
  933. returnsReference: no
  934. Modifiers: 256
  935. Number of Parameters: 2
  936. Number of Required Parameters: 2
  937. Inspecting parameter 'option' of method 'set_opt'
  938. isArray: no
  939. allowsNull: no
  940. isPassedByReference: no
  941. isOptional: no
  942. isDefaultValueAvailable: no
  943. Inspecting parameter 'value' of method 'set_opt'
  944. isArray: no
  945. allowsNull: no
  946. isPassedByReference: no
  947. isOptional: no
  948. isDefaultValueAvailable: no
  949. Inspecting method 'ssl_set'
  950. isFinal: no
  951. isAbstract: no
  952. isPublic: yes
  953. isPrivate: no
  954. isProtected: no
  955. isStatic: no
  956. isConstructor: no
  957. isDestructor: no
  958. isInternal: yes
  959. isUserDefined: no
  960. returnsReference: no
  961. Modifiers: 256
  962. Number of Parameters: 5
  963. Number of Required Parameters: 5
  964. Inspecting parameter 'key' of method 'ssl_set'
  965. isArray: no
  966. allowsNull: no
  967. isPassedByReference: no
  968. isOptional: no
  969. isDefaultValueAvailable: no
  970. Inspecting parameter 'cert' of method 'ssl_set'
  971. isArray: no
  972. allowsNull: no
  973. isPassedByReference: no
  974. isOptional: no
  975. isDefaultValueAvailable: no
  976. Inspecting parameter 'certificate_authority' of method 'ssl_set'
  977. isArray: no
  978. allowsNull: no
  979. isPassedByReference: no
  980. isOptional: no
  981. isDefaultValueAvailable: no
  982. Inspecting parameter 'certificate_authority_path' of method 'ssl_set'
  983. isArray: no
  984. allowsNull: no
  985. isPassedByReference: no
  986. isOptional: no
  987. isDefaultValueAvailable: no
  988. Inspecting parameter 'cipher' of method 'ssl_set'
  989. isArray: no
  990. allowsNull: no
  991. isPassedByReference: no
  992. isOptional: no
  993. isDefaultValueAvailable: no
  994. Inspecting method 'stat'
  995. isFinal: no
  996. isAbstract: no
  997. isPublic: yes
  998. isPrivate: no
  999. isProtected: no
  1000. isStatic: no
  1001. isConstructor: no
  1002. isDestructor: no
  1003. isInternal: yes
  1004. isUserDefined: no
  1005. returnsReference: no
  1006. Modifiers: 256
  1007. Number of Parameters: 0
  1008. Number of Required Parameters: 0
  1009. Inspecting method 'stmt_init'
  1010. isFinal: no
  1011. isAbstract: no
  1012. isPublic: yes
  1013. isPrivate: no
  1014. isProtected: no
  1015. isStatic: no
  1016. isConstructor: no
  1017. isDestructor: no
  1018. isInternal: yes
  1019. isUserDefined: no
  1020. returnsReference: no
  1021. Modifiers: 256
  1022. Number of Parameters: 0
  1023. Number of Required Parameters: 0
  1024. Inspecting method 'store_result'
  1025. isFinal: no
  1026. isAbstract: no
  1027. isPublic: yes
  1028. isPrivate: no
  1029. isProtected: no
  1030. isStatic: no
  1031. isConstructor: no
  1032. isDestructor: no
  1033. isInternal: yes
  1034. isUserDefined: no
  1035. returnsReference: no
  1036. Modifiers: 256
  1037. Number of Parameters: 1
  1038. Number of Required Parameters: 0
  1039. Inspecting parameter 'flags' of method 'store_result'
  1040. isArray: no
  1041. allowsNull: no
  1042. isPassedByReference: no
  1043. isOptional: yes
  1044. isDefaultValueAvailable: no
  1045. Inspecting method 'thread_safe'
  1046. isFinal: no
  1047. isAbstract: no
  1048. isPublic: yes
  1049. isPrivate: no
  1050. isProtected: no
  1051. isStatic: no
  1052. isConstructor: no
  1053. isDestructor: no
  1054. isInternal: yes
  1055. isUserDefined: no
  1056. returnsReference: no
  1057. Modifiers: 256
  1058. Number of Parameters: 0
  1059. Number of Required Parameters: 0
  1060. Inspecting method 'use_result'
  1061. isFinal: no
  1062. isAbstract: no
  1063. isPublic: yes
  1064. isPrivate: no
  1065. isProtected: no
  1066. isStatic: no
  1067. isConstructor: no
  1068. isDestructor: no
  1069. isInternal: yes
  1070. isUserDefined: no
  1071. returnsReference: no
  1072. Modifiers: 256
  1073. Number of Parameters: 0
  1074. Number of Required Parameters: 0
  1075. Inspecting property 'affected_rows'
  1076. isPublic: yes
  1077. isPrivate: no
  1078. isProtected: no
  1079. isStatic: no
  1080. isDefault: yes
  1081. Modifiers: 256
  1082. Inspecting property 'client_info'
  1083. isPublic: yes
  1084. isPrivate: no
  1085. isProtected: no
  1086. isStatic: no
  1087. isDefault: yes
  1088. Modifiers: 256
  1089. Inspecting property 'client_version'
  1090. isPublic: yes
  1091. isPrivate: no
  1092. isProtected: no
  1093. isStatic: no
  1094. isDefault: yes
  1095. Modifiers: 256
  1096. Inspecting property 'connect_errno'
  1097. isPublic: yes
  1098. isPrivate: no
  1099. isProtected: no
  1100. isStatic: no
  1101. isDefault: yes
  1102. Modifiers: 256
  1103. Inspecting property 'connect_error'
  1104. isPublic: yes
  1105. isPrivate: no
  1106. isProtected: no
  1107. isStatic: no
  1108. isDefault: yes
  1109. Modifiers: 256
  1110. Inspecting property 'errno'
  1111. isPublic: yes
  1112. isPrivate: no
  1113. isProtected: no
  1114. isStatic: no
  1115. isDefault: yes
  1116. Modifiers: 256
  1117. Inspecting property 'error'
  1118. isPublic: yes
  1119. isPrivate: no
  1120. isProtected: no
  1121. isStatic: no
  1122. isDefault: yes
  1123. Modifiers: 256
  1124. Inspecting property 'error_list'
  1125. isPublic: yes
  1126. isPrivate: no
  1127. isProtected: no
  1128. isStatic: no
  1129. isDefault: yes
  1130. Modifiers: 256
  1131. Inspecting property 'field_count'
  1132. isPublic: yes
  1133. isPrivate: no
  1134. isProtected: no
  1135. isStatic: no
  1136. isDefault: yes
  1137. Modifiers: 256
  1138. Inspecting property 'host_info'
  1139. isPublic: yes
  1140. isPrivate: no
  1141. isProtected: no
  1142. isStatic: no
  1143. isDefault: yes
  1144. Modifiers: 256
  1145. Inspecting property 'info'
  1146. isPublic: yes
  1147. isPrivate: no
  1148. isProtected: no
  1149. isStatic: no
  1150. isDefault: yes
  1151. Modifiers: 256
  1152. Inspecting property 'insert_id'
  1153. isPublic: yes
  1154. isPrivate: no
  1155. isProtected: no
  1156. isStatic: no
  1157. isDefault: yes
  1158. Modifiers: 256
  1159. Inspecting property 'protocol_version'
  1160. isPublic: yes
  1161. isPrivate: no
  1162. isProtected: no
  1163. isStatic: no
  1164. isDefault: yes
  1165. Modifiers: 256
  1166. Inspecting property 'server_info'
  1167. isPublic: yes
  1168. isPrivate: no
  1169. isProtected: no
  1170. isStatic: no
  1171. isDefault: yes
  1172. Modifiers: 256
  1173. Inspecting property 'server_version'
  1174. isPublic: yes
  1175. isPrivate: no
  1176. isProtected: no
  1177. isStatic: no
  1178. isDefault: yes
  1179. Modifiers: 256
  1180. Inspecting property 'sqlstate'
  1181. isPublic: yes
  1182. isPrivate: no
  1183. isProtected: no
  1184. isStatic: no
  1185. isDefault: yes
  1186. Modifiers: 256
  1187. Inspecting property 'stat'
  1188. isPublic: yes
  1189. isPrivate: no
  1190. isProtected: no
  1191. isStatic: no
  1192. isDefault: yes
  1193. Modifiers: 256
  1194. Inspecting property 'thread_id'
  1195. isPublic: yes
  1196. isPrivate: no
  1197. isProtected: no
  1198. isStatic: no
  1199. isDefault: yes
  1200. Modifiers: 256
  1201. Inspecting property 'warning_count'
  1202. isPublic: yes
  1203. isPrivate: no
  1204. isProtected: no
  1205. isStatic: no
  1206. isDefault: yes
  1207. Modifiers: 256
  1208. Default property 'affected_rows'
  1209. Default property 'client_info'
  1210. Default property 'client_version'
  1211. Default property 'connect_errno'
  1212. Default property 'connect_error'
  1213. Default property 'errno'
  1214. Default property 'error'
  1215. Default property 'error_list'
  1216. Default property 'field_count'
  1217. Default property 'host_info'
  1218. Default property 'info'
  1219. Default property 'insert_id'
  1220. Default property 'protocol_version'
  1221. Default property 'server_info'
  1222. Default property 'server_version'
  1223. Default property 'sqlstate'
  1224. Default property 'stat'
  1225. Default property 'thread_id'
  1226. Default property 'warning_count'
  1227. done!