The url has changed: https://odan.github.io/2017/01/07/basic-crud-operations-with-pdo.html
The url has changed: https://odan.github.io/2017/03/21/xampp-oracle-driver-setup-v12.html
The url has changed: https://odan.github.io/2017/04/17/rest-restful-api-quick-reference.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Configuration | |
{ | |
private $settings = []; | |
public function __construct(array $settings) | |
{ | |
$this->settings = $settings; | |
} |
The URL has changed: https://odan.github.io/2018/07/17/aspnet-core-2-ubuntu-setup.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use PhpOffice\PhpSpreadsheet\Cell\Coordinate; | |
use PhpOffice\PhpSpreadsheet\Reader\Xlsx; | |
/** | |
* ExcelFileReader. | |
*/ | |
class ExcelFileReader | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$dom = new DOMDocument(); | |
$dom->preserveWhiteSpace = false; | |
$dom->formatOutput = true; | |
$dom->loadXML(file_get_contents(__DIR__ . '/demo.xml')); | |
$dom = removeAllNamespaces($dom); | |
$dom->save('demo-out.xml'); |
OlderNewer