- CodeIgniter Web Application Blueprints
- Rob Foster
- 203字
- 2021-08-06 19:34:26
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Create or open a .htaccess
file."
A block of code is set as follows:
$this->load->model('Urls_model'); if ($res = $this->Urls_model->save_url($data)) { $page_data['success_fail'] = 'success'; $page_data['encoded_url'] = $res; } else { $page_data['success_fail'] = 'fail'; }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
if ($this->form_validation->run() == FALSE) { // Set initial values for the view $page_data = array('success_fail' => null, 'encoded_url' => false);
Any command-line input or output is written as follows:
user@server:/path/to/codeigniter$ php tools/spark install -v1.0.0 example-spark
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Enter the following command and click on OK."
- C# 2012程序設(shè)計(jì)實(shí)踐教程 (清華電腦學(xué)堂)
- Mastering Concurrency in Go
- TestNG Beginner's Guide
- 編寫(xiě)高質(zhì)量代碼:改善C程序代碼的125個(gè)建議
- 名師講壇:Java微服務(wù)架構(gòu)實(shí)戰(zhàn)(SpringBoot+SpringCloud+Docker+RabbitMQ)
- Mastering Google App Engine
- Reactive Android Programming
- 碼上行動(dòng):用ChatGPT學(xué)會(huì)Python編程
- Windows內(nèi)核編程
- 計(jì)算機(jī)應(yīng)用基礎(chǔ)項(xiàng)目化教程
- Java EE 8 and Angular
- 深度學(xué)習(xí)入門:基于Python的理論與實(shí)現(xiàn)
- Mastering XenApp?
- Flink大數(shù)據(jù)分析實(shí)戰(zhàn)
- Drupal 7 Webform Cookbook