- XAMPP for Windows: https://www.apachefriends.org/download.html
- Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017 and 2019
If the file C:\xampp\php\ext\php_xdebug.dll already exists, you can skip the download.
If the file C:\xampp\php\ext\php_xdebug.dll already exists, you can skip the download.
| <?php | |
| class Mysql{ | |
| static private $link = null; | |
| static private $info = array( | |
| 'last_query' => null, | |
| 'num_rows' => null, | |
| 'insert_id' => null | |
| ); |
| // Generate unique IDs for use as pseudo-private/protected names. | |
| // Similar in concept to | |
| // <http://wiki.ecmascript.org/doku.php?id=strawman:names>. | |
| // | |
| // The goals of this function are twofold: | |
| // | |
| // * Provide a way to generate a string guaranteed to be unique when compared | |
| // to other strings generated by this function. | |
| // * Make the string complex enough that it is highly unlikely to be | |
| // accidentally duplicated by hand (this is key if you're using `ID` |
BASED ON https://gist.github.com/ciesielskico/f35a325d7509a6fe9178dc6377d97017 BY CIESIELSKICO
gulpfile.js
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Text.RegularExpressions; | |
| using App.Infrastructure; | |
| using System.Reflection; | |
| using System.IO; | |
| namespace App.ServiceModule.Internal |
| public class DynamicAssemblyLoader | |
| { | |
| public Dictionary<string, Assembly> Assemblies = new Dictionary<string, Assembly>(); | |
| private void InitalLoadAssemblies() | |
| { | |
| DirectoryInfo dir = new DirectoryInfo(_ExtPath); | |
| foreach (FileInfo f in dir.GetFiles("*ServiceModule.dll")) | |
| { |
| /** | |
| * jqLaMa - jQuery Layout Manager | |
| * | |
| * @author Antmr | |
| * @version 1.0 | |
| * | |
| * USAGE: | |
| * | |
| * layout-mgr-Attributes: | |
| * ------------------------------------------------------------------- |