<?php
//эта программа щитатит (ваш индюс)
session_start();
if (!isset($_SESSION['count'])) {
$_SESSION['count'] = 0;
} else {
function rw() {
$count = $_SESSION['count'];
$fp = fopen("W:\\home\\localhost\\www\\resurse\\counter.txt","r");
$contents .= fread($fp, 100);
$contents++;
fclose($fp);
$fp = fopen("W:\\home\\localhost\\www\\resurse\\counter.txt","w+");
fwrite($fp,$contents);
fclose($fp);
echo 'общее колличество сессий: ' . $contents . "\n";
echo 'ваш личный вклад : ' . $count . "\n";
}
$count = $_SESSION['count'];
rw();
$_SESSION['count']++;
}
?>
<html>
<head>
<title>знакомство с сессиями</title>
<!--<meta http-equiv=Refresh content="0; url=/denwer/">-->
<meta charset = "utf-8">
</head>
<body>
<script>
window.onload = function(){
window.addEventListener("click",()=>{location.reload(true)},false);
}
</script>
<h1>Привет мир! Это мой первый проект на PHP</h1>
<button>sciatic hump</button>
</body>
</html>
<html>
<head>
<title>знакомство с сессиями</title>
<!--<meta http-equiv=Refresh content="0; url=/denwer/">-->
<meta charset = "utf-8">
</head>
<body>
<script>
window.onload = function(){
window.addEventListener("click",()=>{location.reload(true);},false);
}
</script>
<h5>Это мой первый проект на PHP</h5>
<button>sciatic hump</button>
</body>
</html>
$tree = ["ель","сосна","ольха","дуб","ясень","клен"] и $age = ["120","300","350","400"]
$array = [ $age[0] => [$tree[0], $tree[1]], $age[1] => $tree[2], $age[2] => [$tree[5],$tree[6]],$age[3] => $tree[3] ]
$current = array_slice($ar, 2, 3);
foreach( $current as $key ){
print_r($key);
}
iconv(): iconv('cp1251', 'utf-8', $string).
<?php
$array = [
[1, 2],
[3, 4],
];
foreach ($array as list($a, $b)) {
// $a содержит первый элемент вложенного массива,
// а $b содержит второй элемент.
echo "A: $a; B: $b\n";
}
?>
<?php
$array = [
[1, 2],
[3, 4],
];
foreach ($array as list($a)) {
// Обратите внимание на отсутствие $b.
echo "$a\n";
}
?>
success: function(response) {
$('#ecomForm').modal();
flag = true;
}
if(flag){
alert(responce);
}
if($_POST['fullName']!=''){
echo "Hello User". $_POST['fullName'] ."Message sent successfully";
}
Возможна ли такая конструкция на 5.2.17?$tmp = $res->fetch_assoc(); $this->visits = $tmp['visits']; $this->status = $tmp['status']; return ($tmp['status'] < 6 && $this->visits < $this->limit);
- Нет.
до 5.3.0 fetch_assoc работает с while:
while ($row = $result->fetch_assoc()) {
// do what you need.
}
дело в версии php или я ошибаюсь?
/**
* List entries in the keychain
*
* @return void
*
* @since 12.3
*/
protected function listEntries()
{
foreach ($this->keychain->toArray() as $key => $value)
{
$line = $key;
if ($this->input->get('print-values'))
{
$line .= ': ' . $this->dumpVar($value);
}
$this->out($line);
}
}