個人用ツール

「ver4/関数リファレンス/siteName」の版間の差分

提供: baserCMS公式ガイド

移動: 案内, 検索
行5: 行5:
 
## 使い方
 
## 使い方
 
<syntaxhighlight lang="php">
 
<syntaxhighlight lang="php">
$this->BcBaser->siteName();
+
<?php $this->BcBaser->siteName(); ?>
 
</syntaxhighlight>
 
</syntaxhighlight>
 
## パラメータ
 
 
 
## 戻り値
 
なし
 
  
  
 
## 用例
 
## 用例
 
### 基本
 
### 基本
 +
WEBサイト名を出力する。
 
####コード
 
####コード
 
<syntaxhighlight lang="php">
 
<syntaxhighlight lang="php">
行23: 行18:
  
 
####出力
 
####出力
 +
baserCMS inc.
  
 
### 応用
 
####コード
 
 
 
####出力
 
 
 
## 注
 
 
## 変更履歴
 
 
## ソースファイル
 
 
## 関連資料
 
  
 
##類似の関数
 
##類似の関数
 
+
- [getSiteName](/ver4/関数リファレンス/getSiteName) - WEBサイト名を取得する
 
+
[[Category:関数リファレンスver4]]
+

2019年1月14日 (月) 23:50時点における版

説明

管理画面のサイト基本設定のWEBサイト名を出力する

使い方

<?php $this->BcBaser->siteName(); ?>

用例

基本

WEBサイト名を出力する。

コード

<?php $this->BcBaser->siteName(); ?>

出力

baserCMS inc.

類似の関数