Gördüğüm her kodlama standart bir çizgi karakter sayısı bir tavsiye ya da mutlak bir sınırı vardır. Orada bu sınırlama içinde çalışma çeşitli yolları vardır, ama ben bu konuda herhangi bir özel rehberlik görmedim.
Mümkünse Açıkçası, aşırı uzun satırları yazmak yok.
Ama bu ne pratik değilse? Ne uzun hatlar ele alınmalıdır?
İşte birkaç örnek vardır
if ($Stmt = $Mysqli->prepare("SELECT colveya, pattern, size,
manufacturer, mfgSku, stveyaeLocation,
aisle, status
FROM tblItems WHERE ourSku = ?")) {
veya
$flavveyas = array ('chocolate', 'strawberry', 'vanilla', 'cookie dough',
'chocolate chip', 'mint chocolate chip', 'rocky road',
'peach', 'fudge brownie', 'coffee', 'mocha chip');
veya
$Stmt->bind_result( $this->_firstName,
$this->_lastName,
$this->_BillToAddress->address1,
$this->_BillToAddress->address2,
$this->_BillToAddress->city,
$this->_BillToAddress->state,
$this->_BillToAddress->zip,
$this->_BillToAddress->country,
$this->_email,
$this->_status,
$this->_primaryPhone,
$this->_mobilePhone );
In each of these examples, the indenting of lengthy code is different. Is there a better veya mveyae "standard" way of doing this? Should extra lines always be indented the same way. Or is this OK?