http://www.synet.sk/php/en/230-php-drivers-for-microsoft-sql-server-mssql-sqlsrv-utf8
http://stackoverflow.com/questions/5953882/connecting-to-mssql-using-pdo-through-php-and-linux
<?php | |
class BcmathCalculator extends Nette\Object implements ICalculator | |
{ | |
/** @var int */ | |
private $scale; |
<?php | |
/** @Entity */ | |
class Product { | |
/** @Column */ | |
protected $code; | |
/** @OneToMany(ProductPricemap) */ | |
protected $prices; | |
} |
<?php | |
namespace Rixxi\Utils; | |
class Batch implements \ArrayAccess | |
{ | |
/** @var int */ | |
private $limit; |
<?php | |
use Nette; | |
class TableFactory extends Nette\Object | |
{ | |
/** @var Nette\Database\Connection */ |
http://silviomoreto.github.io/bootstrap-select/ Bootstrap select with lot of thought behind it.
http://gregpike.net/demos/bootstrap-file-input/demo.html Simple file input 2 button plugin
http://jdewit.github.io/bootstrap-timepicker/ Bootstrap time picker good idea needs to be more polished
https://github.com/mgussekloo/my-bootstrap-datetimepicker
<?php | |
class A { | |
public function callProtectedFunctionOfInstanceOfClassDescendant() | |
{ | |
echo (new B)->protectedFunction(); | |
} | |
} | |
class B extends A { |
<?php | |
namespace ApiModule; | |
use Api\Authenticator, | |
Model\Rest, | |
Model\Action, | |
Mishak\Application\Response\JsonResponse, | |
Nette, | |
Nette\Application\UI\Presenter, |
var blacklist = ['mishak','mullick']; | |
setInterval(function () { | |
$('#chatcontent > div').each(function(i,v){if(-1!=$.inArray($('span', v).text(), blacklist))$(v).hide();}); | |
}, 1000); |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Text.RegularExpressions; | |
using System.Runtime.Serialization; | |
namespace net.mishak.utils | |
{ |