- 2018-03-25
- #583585 | 2018-03-25 22:45:39, *2 | <AllenJB@#php> spaces: I believe this achieves what you're trying to do: https://...
- #583582 | 2018-03-25 22:09:59, *1 | <AllenJB@#php> Looks like they removed anonymous gist creation: https://...
- #583581 | 2018-03-25 21:55:10, *2 | <AllenJB@#php> spaces: Use DateTime::getLastErrors() to retrieve the reasons for failure: https://...
- 2017-11-12
- #582555 | 2017-11-12 00:17:58, *0 | <AllenJB@#php> giany: This looks like a possible cause: https://...
- 2017-11-03
- #580800 | 2017-11-03 03:28:56, *0 | <AllenJB@#php> If you're not clear on what UTF8 /character sets are, this may help you: https://...
- 2017-10-27
- #579553 | 2017-10-27 01:08:09, *0 | <AllenJB@#php> https://... - Trying to work out if OP is trolling, accidentally pasted the wrong file, or genuinely doesn't know what language they're using
- 2017-10-15
- #577491 | 2017-10-15 17:25:18, *0 | <AllenJB@#php> 2002 is client error - "can't connect via socket" - https://...
- 2017-10-10
- #576646 | 2017-10-10 20:40:01, *0 | <AllenJB@#php> MySQL doesn't support nested transactions. The closest available feature is save points: https://...
- 2017-10-04
- #575613 | 2017-10-04 03:27:13, *0 | <AllenJB@#php> I did spell it right =) https://...
- 2017-10-03
- #575553 | 2017-10-03 21:14:36, *0 | <AllenJB@#php> slax0r: Recommended reading: High Performance MySQL (book); Creating multi-column indexes: http://... (other good articles on that site too)
- #575531 | 2017-10-03 17:42:34, *0 | <AllenJB@#php> The differences between Percona and "Oracle" MySQL are documented at: https://...
- 2017-10-02
- #575306 | 2017-10-02 02:23:15, *0 | <AllenJB@#php> donald: This might help you: https://...
- 2017-10-01
- #575251 | 2017-10-01 18:17:47, *0 | <AllenJB@#php> From https://...
- 2017-09-28
- #574747 | 2017-09-28 03:28:34, *0 | <AllenJB@#php> see also: https://...
- #574746 | 2017-09-28 03:27:28, *0 | <AllenJB@#php> morfin: https://...
- 2017-09-26
- #574513 | 2017-09-26 19:01:24, *0 | <AllenJB@#php> nikio_: See the answer to https://...
- 2017-09-22
- #573870 | 2017-09-22 17:15:37, *0 | <AllenJB@#php> Sourcey: By "expire time of the session", do you mean the expire time of the session cookie? Or are you referring to the session data (it's important to note that these are basically managed separately - read up on session management for more info: http://...
- 2017-08-11
- #570334 | 2017-08-11 01:27:34, *0 | <AllenJB@#php> EGreg: This may help explain: https://...
- 2017-08-01
- #568698 | 2017-08-01 05:07:26, *0 | <AllenJB@#php> Definitely looks like addslashes (same 672 char length): https://...
- #568697 | 2017-08-01 05:02:33, *0 | <AllenJB@#php> Jon30: That appears to be valid JSON: https://... - could your framework or something be mangling values on input? or are you attempting to escape it using some other method? How do you retrieve the data from the request ($_POST? $_REQUEST? php://input?)?
- #568688 | 2017-08-01 03:22:20, *0 | <AllenJB@#php> The Trump administration explained in terms of The West Wing: https://...
- 2017-07-19
- #566676 | 2017-07-19 14:34:55, *0 | <AllenJB@#php> include / require are not relative to the current file, but the include_path (which at minimum contains the path of the initially executed script) - see https://...
- 2017-07-17
- #566333 | 2017-07-17 16:55:17, *0 | <AllenJB@#php> Composer can also handle extension dependencies (but won't install missing extensions): http://...
- 2017-07-16
- #566156 | 2017-07-16 19:20:53, *0 | <AllenJB@#php> That code doesn't look at all valid. There's a 'break' with no associated loop structure. There's a code fragment that looks like it's supposed to be an elseif condition - see https://... for how to use that.
- 2017-07-10
- #565037 | 2017-07-10 22:56:45, *0 | <AllenJB@#php> In PHP, isset also does an is_null() check (annoyingly): https://...
- #564926 | 2017-07-10 03:18:44, *0 | <AllenJB@#php> oh, and character sets & collations (including articles on http://... on upcoming stuff in 8.0)
- 2017-07-04
- #563927 | 2017-07-04 04:47:15, *0 | <AllenJB@#php> New version releases are announced on the php.net front page. There's also an announce mailing list and a twitter account: https://...
- 2017-06-17
- #561915 | 2017-06-17 01:13:11, *0 | <AllenJB@#php> print_r makes it impossible to differentiate between some values - for example: https://...
- 2017-06-10
- #560822 | 2017-06-10 22:35:10, *0 | <AllenJB@#php> Have you considered reading the manual page ( https://... )?
- 2017-06-06
- #559949 | 2017-06-06 04:17:51, *0 | <AllenJB@#php> Obsdark: Your script is most likely failing to connect to the mysql server for some reason. To find out why you need to properly handle errors when connecting - see the examples on https://... for how to get more information about the connection error
- 2017-06-03
- #559556 | 2017-06-03 21:44:27, *0 | <AllenJB@#php> skinux: Without more information, best guess is that you're on shared hosting and the hosting provider has disabled the function for "security" (ref: https://... )
- 2017-05-25
- #558032 | 2017-05-25 02:24:04, *0 | <AllenJB@#php> rjCousineau: https://... - I think you probably want to check your input
- 2017-05-24
- #557964 | 2017-05-24 18:01:49, *0 | <AllenJB@#php>
- 2017-05-19
- #556996 | 2017-05-19 04:37:11, *0 | <AllenJB@#php> There's an unofficial LXR at https://... (Run by the regulars in the PHP channel on ChatOverflow)
- 2017-05-17
- #556742 | 2017-05-17 19:23:54, *0 | <AllenJB@#php> And as another example: https://... contains a changelog section
- #556740 | 2017-05-17 19:23:02, *0 | <AllenJB@#php> standa_hatua: See, for example, https://... - you can see at the top of the page '(PHP 5 >= 5.5.0, PHP 7)' - this is what versions the function is available in
- 2017-05-14
- #556198 | 2017-05-14 23:10:44, *0 | <AllenJB@#php> profsimm does appear to be correct here. (My interpretation of) TMLs description is incorrect. Ref: http://... (~paras 1-6)
- 2017-04-21
- #551824 | 2017-04-21 16:07:25, *0 | <AllenJB@#php> There's 2 obvious sections in the manual: https://... and https://php.net/install.fpm
- 2017-04-20
- 2017-04-14
- #550571 | 2017-04-14 02:28:27, *0 | <AllenJB@#php> When you cast something to a specific type, it becomes that type (or you get an error if it can't be cast): https://...
- 2017-04-06
- #549313 | 2017-04-06 17:11:41, *0 | <AllenJB@#php> (For a list of mirrors, see http://... )
- #549312 | 2017-04-06 17:10:37, *0 | <AllenJB@#php> edwinhoksberg: Possinly - you can reach mirrors directly by generally using <countrycode>.php.net - eg. http://...
- 2017-04-04
- #548892 | 2017-04-04 17:02:43, *0 | <AllenJB@#php> dixidave: https://... well we can clearly see that works as expected. Can you reproduce the issue on 3v4l.org (are there additional functions or loops that you haven't put in the paste you already gave us)?
- #548809 | 2017-04-04 03:23:19, *0 | <AllenJB@#php> FatalNIX: https://...#ini.auto-detect-line-endings
- 2017-03-25
- #547008 | 2017-03-25 22:04:48, *0 | <AllenJB@#php> Pwuts: I don't get the same result. Could some other code be manipulating the data? https://...
- 2017-03-24
- #546628 | 2017-03-24 00:25:27, *0 | <AllenJB@#php> https://... - Amsterdam apparently
- #546621 | 2017-03-24 00:16:28, *0 | <AllenJB@#php> When you create objects with a timestamp, it ignores the timezone passed and sets the timezone to UTC - you have to set it after: https://...
- 2017-03-23
- #546602 | 2017-03-23 22:48:22, *0 | <AllenJB@#php> He's referring to https://... - Assertions aren't purely a testing thing.
- #546431 | 2017-03-23 02:17:40, *0 | <AllenJB@#php> badcom: See https://... - emulate prepares is an internal PDO setting and I believe can affect queries which aren't explicitly prepared.
- 2017-03-20
- #545785 | 2017-03-20 00:46:12, *0 | <AllenJB@#php> whoever: I think I see what you're trying to do, but in the case of modifying array keys you cannot use references because PHP won't let you: https://...
- 2017-03-16
- #545198 | 2017-03-16 20:20:36, *0 | <AllenJB@#php> See exmaple #3 on https://... for an example of passing additional parameters to the MTA
- 2017-03-15
最近八卦大师排名前 20
- RePaste*92
- tg_bot*82
- __adrian*63
- cdunklau*56
- kdecn_tg*53
- teleboto*48
- energizer*45
- AnrDaemon*42
- altendky*39
- konrados*39
- SnoopJeDi*27
- silv3r_m00n*24
- candide*23
- nedbat*23
- rockwood*21
- twb*20
- delboy1978uk*20
- RandomReader*19
- Princess17b29a*18
- Zenix_2k2*17
历史八卦大师排名前 10
最近最活跃房间前 20
- #python*1,247
- ##php*816
- ##c++*457
- ##c*236
- #gentoo-cn*89
- #kde-cn*60
- #fedora-zh*57
- #ubuntu-cn*12
历史最活跃房间前 10
- #python*87,709
- ##php*58,734
- #ubuntu-cn*53,642
- #linuxfire*53,479
- ##c++*31,370
- ##c*23,827
- #TLF_FILES*18,031
- #bitcoin*16,176
- #lighttpd*4,606
- #kde-cn*4,367