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 CarrinhoDeCompras | |
{ | |
private $lista = []; | |
public function add(mixed $item): static | |
{ | |
$this->lista[] = $item; | |
return $this; |
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 HttpRequest | |
{ | |
protected $url; | |
protected $headers = array(); | |
public $httpCode; | |
private $sslVerify = false; | |
public function request($data, $rawMethod = 'POST', $sendMode = 'json') |
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 Car | |
{ | |
// As variáveis da classe são propriedades do objeto "Car" | |
private $name; // isto é uma propriedade | |
protected $color; // isto também é | |
public $brand; // e isto também é |
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 | |
$input = 'aaacccbdd'; | |
$output = 'a3b1c3d2'; | |
$list = str_split($input); | |
$matchs = []; | |
foreach ($list as $i => $char) { | |
isset($matchs[$char]) ? $matchs[$char]++ : $matchs[$char] = 1; |
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 | |
declare(strict_types=1); | |
/* | |
* coded by Lucas M. Dutra, github.com/terremoth | |
*/ | |
abstract class Modulize | |
{ |
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
#!/usr/bin/env sh | |
# The FPM ini file, and not the CLI one | |
ini_file=$(php -i | grep "Loaded Configuration File" | awk -F ' => ' '{print $2}' | sed 's/cli/fpm/g') | |
echo $ini_file | |
sudo sed -i 's/memory_limit\s*=.*/memory_limit = 256M/g' $ini_file | |
cat $ini_file | grep memory_limit | |
sudo sed -i 's/upload_max_filesize\s*=.*/upload_max_filesize = 3G/g' $ini_file |
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 | |
$is_terminal = php_sapi_name() == "cli"; | |
$td_tag_init = "\t".'<td>'; | |
$td_tag_end = '</td>'.PHP_EOL; | |
$tr_tag_init = '<tr>'.PHP_EOL; | |
$tr_tag_end = '</tr>'.PHP_EOL; | |
$to_html_init = '&#'; | |
$to_html_end = ';'; |
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 | |
$aFile = file('README.md', FILE_TEXT); | |
$licensed_file = fopen('NEW_README.md', 'wb+'); | |
// Stub: [](/LICENSE) | |
// pattern to search =  | |
foreach ($aFile as $line_num => $line) { |
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 | |
$db = new PDO('sqlite:csvdata.sqlite'); | |
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); | |
if ($file = fopen("parsed.csv", "r")) { | |
while(!feof($file)) { | |
$line = fgets($file); |
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
Set WshShell = CreateObject("WScript.Shell") | |
Function ConvertToKey(Key) | |
Const KeyOffset = 52 | |
i = 28 | |
Chars = "BCDFGHJKMPQRTVWXY2346789" | |
Do | |
Cur = 0 | |
x = 14 | |
Do |
OlderNewer