このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
vixip/www/users/index.php

32 行
810 B
PHP

<?php
require_once("../../api.php");
if (!isset($_GET["id"])) header("Location: /404.php");
$id = (int)$_GET["id"];
$cur = "/users/?id=".$id;
$res = get("user/".$id."/profile/all");
if (!isset($res->body)) {
header("Location: /404.php");
die();
}
$top = get("user/".$id."/profile/top");
$res = $res->body;
$top = $top->body;
$out = ["title" => $top->extraData->meta->title, "desc" => $top->extraData->meta->description, "img_sec" => "userhead", "img_id" => $id];
?>
<?php
include("../../include/header.php");
$title = $top->extraData->meta->ogp->title;
$now = "home";
include("../../include/usermenu.php");
unset($res);
?>
<hr />
<p>
<?= nl2br($top->extraData->meta->twitter->description) ?>
</p>
<?php
unset($top);
?>
<?php include("../../include/footer.php"); ?>