oop — код php показывает ошибку смещения

Я новичок в smarty php templating system и прохожу книгу Smarty PHP Template Programming, Самый первый пример в главе 2 выглядит следующим образом.

В корневой папке у нас есть файл с именем data.txt со следующей информацией.

Title=> Building Websites with VB.NET and DotNetNuke 3.0
Image=> 1904811272.jpg
Author=> Daniel N. Egan
Description=> A practical guide to creating and maintaining your own website with DotNetNuke, the free, open source evolution of Microsoft's IBuySpy Portal
Year=> 2005
Price=> 39.99

Title=> SSL VPN : Understanding, evaluating and planning secure, web-based remote access
Image=> 1904811078.jpg
Author=> Joseph Steinberg, Tim Speed, Simon Jenner
Description=> A comprehensive overview of SSL VPN technologies and design strategies
Year=> 2005
Price=> 49.99

Title=> Windows Server 2003 Active Directory Design and Implementation=> Creating, Migrating, and Merging Networks
Image=> 1904811086.jpg
Author=> John Savill
Description=> A unique, scenario-based approach to selecting and implementing the best Active Directory design for your environment
Year=> 2005
Price=> 59.99

Следующим шагом является получение данных из data.txt, Для этого файл с именем get_data.php в корневой папке со следующим содержимым:

<?php

class books {

public $title = array();
public $image = array();
public $author = array();
public $description = array();
public $year = array();
public $price = array();

private $filename = "data.txt";

//class constructor
function __construct()
{
//get the lines as an array
$i=-1;
$lines = file($this->filename);
// strip "\n" at the end of each array
// get each variable in an array

foreach ( $lines as $line) {
if (strlen($line) > 2) {

$line = rtrim($line);

list($what, $content) = explode("=>", $line);

if ($what == "Title") {
$i++;
$this->title[$i]=$content;
}
elseif ($what == "Image") {
$this->image[$i]=$content;
}
elseif ($what == "Author") {
$this->author[$i]=$content;
}
elseif ($what == "Description") {
$this->description[$i]=$content;
}
elseif ($what == "Year") {
$this->year[$i]=$content;
}
elseif ($what == "Price") {
$this->price[$i]=$content;

};
};
};

} // end constructor

} // end GetData

Уровень бизнес-логики отвечает за проверку данных с точки зрения бизнеса. В этом примере мы применим 10-процентную скидку на книги, изданные в 2005 году, и 20-процентную скидку на книги, опубликованные в 2004 году. Нам нужно создать файл в корневой папке с именем books.php, как показано

<?php
class bo_books {
//public
public $title = array();
public $image = array();
public $author = array();
public $description = array();
public $year = array();
public $price = array();
public $discount = array();
public $discounted = array();
//private
protected $DataObject;
function __construct()
{
$this->DataObject = new books();
}
public function apply_discount()
{
$this->title = $this->DataObject->title;
$this->image = $this->DataObject->image;
$this->author = $this->DataObject->author;
$this->description = $this->DataObject->description;
$this->year = $this->DataObject->year;
$this->price = $this->DataObject->price;
$j = 0;
foreach($this->year as $year)
{
if ($this->year[$j] == '2004')
$this->discount[$j] = '20';
elseif ($this->year[$j] == '2005')
$this->discount[$j] = '10';
$this->discounted[$j] = intval($this->price[$j] * (100 - $this->discount[$j]) ) / 100 ;
$j++;
};
} // end function apply_discount()
} // end class bo_books

Уровень представления: во-первых, нам нужно передать переменные из уровня бизнес-логики в уровень представления. В корневой папке мы создаем файл с именем index.php следующим образом:

<?php

require("libs/Smarty.class.php");
require_once("get_data.php");
require_once("books.php");

$book = new bo_books();
$book->apply_discount();

$smarty = new Smarty;

$smarty->assign("book",$book);

$smarty->display('index.tpl');

?>

Далее мы создаем index.tpl файл в templates папка

<html>
<head> <title> Site Architecture Example </title>
</head>
<body>
<table border="0" width="100%">
<tr>
<td align="left">
<a href="http://www.packtpub.com">
<img src="https://web-answers.ru/wp-content/uploads/2019/03\Packt.png" border="0">
</a>
<img src="https://web-answers.ru/wp-content/uploads/2019/03\focused.gif">
</td>
<td>
<h1> Chapter 2 Example </h1>
</td>
</tr>
</table>
<br>
Here are the books in a two-column table :
<br> <br>
<table border="1" width="100%">
{section name=tbl loop=$book->title}
{if %tbl.index% is not odd}
<tr>
{/if}
<td align="left">
<table>
<tr>
<td>
<img src="https://web-answers.ru/wp-content/uploads/2019/03\{$book->image[tbl]}" width="220">
</td>
<td valign="top">
<font size=+1><b> {$book->title[tbl]} </b></font><br>
<font size=-1 color=blue><b> {$book->author[tbl]} </b></font><br>
{$book->description[tbl]} <br>
Year: {$book->year[tbl]} <br>
<font size=-1>Cover Price: <s>${$book->price[tbl]}</s></font> <br>
Our Price: ${$book->discounted[tbl]}
<font color=red> save {$book->discount[tbl]} % </font>
</td>
</tr>
</table>
</td>
{if %tbl.index% is odd}
</tr>
{/if}
{/section}
</table>
</body>
</html>

Как я запускаю программу

Обратите внимание: Неопределенное смещение: 1 в C: \ wamp \ www \ MyCode \ get_data.php в строке 28 «выводится на экран.

Линия 28 на get_data.php является

list($what, $content) = explode("=>", $line);

Кто-нибудь может предложить что-то или даже помочь?

3

Решение

Как сказал Бармар, проблема в том, что у вас есть массив с меньшим или больше чем два элемента в некоторой точке вашего файла. Смотрите строку 15 из data.txt и вы найдете второй =>, так что я думаю, что это проблема.

Попробуйте исправить строку 28 из get_data.php к этому:

list($what, $content) = array_pad(explode('=>', $line, 2), 2, null);

Таким образом, вы всегда будете иметь два элемента в вашем массиве.

На основе этот ответ.

1

Другие решения

Значение $ line равно 1.

$str = 1;
list($what, $content) = explode("=>", $str);

Дает это уведомление:

Примечание: неопределенное смещение: 1 в test.php в строке 7

0

По вопросам рекламы [email protected]